silverbullet/common/types.ts

10 lines
215 B
TypeScript
Raw Normal View History

export const maximumAttachmentSize = 20 * 1024 * 1024; // 10 MB
2022-09-12 20:50:37 +08:00
export type FileMeta = {
name: string;
lastModified: number;
contentType: string;
size: number;
perm: "ro" | "rw";
} & Record<string, any>;