el-plus-crud
Version:
采用Vue3 + TS,封装的element-plus数据驱动表单、列表组件
64 lines (63 loc) • 1.32 kB
TypeScript
/**
* 能够上传的图片类型
*/
export declare const imageTypes: string[];
/**
* 能够上传的图片后缀名称
*/
export declare const imageSuffixes: string[];
/**
* 能够上传的视频类型
*/
export declare const videoTypes: string[];
/**
* 能够上传的视频后缀名称
*/
export declare const videoSuffixes: string[];
/**
* 能够上传的音频类型
*/
export declare const audioTypes: string[];
/**
* 能够上传的音频后缀名称
*/
export declare const audioSuffixes: string[];
/**
* 能够上传的文档类型
*/
export declare const officeTypes: string[];
/**
* 能够上传的文档后缀名称
*/
export declare const officeSuffixes: string[];
/**
* 能够上传的文档类型
*/
export declare const textTypes: string[];
/**
* 能够上传的文档后缀名称
*/
export declare const textSuffixes: string[];
/**
* 能够上传的文档类型
*/
export declare const otherTypes: string[];
/**
* 能够上传的文档后缀
*/
export declare const otherSuffixes: string[];
/**
* 能够上传的文件类型
*/
export declare const fileTypes: string[];
/**
* 能够上传的文件后缀
*/
export declare const fileSuffixes: string[];
/**
* 文档后缀对应的类型
*/
export declare const suffixTypes: {
type: string;
suffixes: string[];
}[];