fileTypeEnum.ts 203 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 // 文件上传时的格式映射 export enum FileTypeEnum { // 文档 TXT = 'text/plain', JSON = 'application/json', // 图片 PNG = 'image/png', JPEG = 'image/jpeg', GIF = 'image/gif', }