2023-05-23 18:53:53 +00:00
|
|
|
export const maximumAttachmentSize = 20 * 1024 * 1024; // 10 MB
|
2022-09-05 09:47:30 +00:00
|
|
|
|
2022-09-12 12:50:37 +00:00
|
|
|
export type FileMeta = {
|
|
|
|
name: string;
|
|
|
|
lastModified: number;
|
|
|
|
contentType: string;
|
|
|
|
size: number;
|
|
|
|
perm: "ro" | "rw";
|
2023-07-30 06:56:44 +00:00
|
|
|
noSync?: boolean;
|
2022-11-20 09:24:42 +00:00
|
|
|
} & Record<string, any>;
|