1
0
silverbullet/packages/common/types.ts

14 lines
219 B
TypeScript
Raw Normal View History

export type PageMeta = {
name: string;
lastModified: number;
2022-04-01 15:07:08 +00:00
lastOpened?: number;
created?: boolean;
};
// Used by FilterBox
export type FilterOption = {
name: string;
orderId?: number;
hint?: string;
};