mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-27 07:50:10 +08:00
11 lines
203 B
TypeScript
11 lines
203 B
TypeScript
// 文件上传时的格式映射
|
|
export enum FileTypeEnum {
|
|
// 文档
|
|
TXT = 'text/plain',
|
|
JSON = 'application/json',
|
|
// 图片
|
|
PNG = 'image/png',
|
|
JPEG = 'image/jpeg',
|
|
GIF = 'image/gif',
|
|
}
|