go-view/src/enums/fileTypeEnum.ts

11 lines
203 B
TypeScript

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