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