silverbullet/common/types.ts

32 lines
550 B
TypeScript
Raw Normal View History

export const maximumAttachmentSize = 100 * 1024 * 1024; // 100 MB
2022-09-12 20:50:37 +08:00
export type FileMeta = {
name: string;
lastModified: number;
contentType: string;
size: number;
perm: "ro" | "rw";
};
export type PageMeta = {
name: string;
lastModified: number;
2022-04-01 23:07:08 +08:00
lastOpened?: number;
2022-05-17 14:32:33 +08:00
perm: "ro" | "rw";
};
export type AttachmentMeta = {
name: string;
contentType: string;
lastModified: number;
size: number;
perm: "ro" | "rw";
};
// Used by FilterBox
export type FilterOption = {
name: string;
orderId?: number;
hint?: string;
};