1
0
silverbullet/common/types.ts

10 lines
215 B
TypeScript
Raw Normal View History

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