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