Files
go-view/src/enums/fileTypeEnum.ts
T
2022-03-19 23:28:33 +08:00

11 lines
203 B
TypeScript

// 文件上传时的格式映射
export enum FileTypeEnum {
// 文档
TXT = 'text/plain',
JSON = 'application/json',
// 图片
PNG = 'image/png',
JPEG = 'image/jpeg',
GIF = 'image/gif',
}