/** * 文件后缀类型枚举 */ declare const FileSuffixEnum: { readonly DOCX: "docx"; readonly DOC: "doc"; readonly PDF: "pdf"; readonly PPTX: "pptx"; readonly PPT: "ppt"; readonly XLSX: "xlsx"; readonly XLS: "xls"; readonly JPG: "jpg"; readonly PNG: "png"; readonly JPEG: "jpeg"; readonly WEBP: "webp"; readonly GIF: "gif"; readonly MP4: "mp4"; readonly AVI: "avi"; readonly FLV: "flv"; readonly MKV: "mkv"; readonly MP3: "mp3"; readonly WAV: "wav"; readonly TXT: "txt"; readonly JSON: "json"; readonly ZIP: "zip"; readonly RAR: "rar"; readonly HTML: "html"; }; /** * 图片后缀类型枚举 */ declare const ImageFileSuffixEnum: { readonly JPG: "jpg"; readonly PNG: "png"; readonly GIF: "gif"; readonly JPEG: "jpeg"; readonly WEBP: "webp"; }; /** * 视频文件后缀类型枚举 */ declare const VideoFileSuffixEnum: { readonly MP4: "mp4"; readonly AVI: "avi"; readonly FLV: "flv"; readonly MKV: "mkv"; }; /** * PPT文件后缀类型枚举 */ declare const PptFileSuffixEnum: { readonly PPT: "ppt"; readonly PPTX: "pptx"; }; /** * 文档文件后缀类型枚举 */ declare const DocumentFileSuffixEnum: { readonly DOC: "doc"; readonly DOCX: "docx"; readonly PDF: "pdf"; readonly TXT: "txt"; readonly XLS: "xls"; readonly XLSX: "xlsx"; readonly JSON: "json"; }; /** * 音乐文件后缀类型枚举 */ declare const MusicFileSuffixEnum: { readonly MP3: "mp3"; readonly WAV: "wav"; }; /** * 压缩文件后缀类型枚举 */ declare const CompressFileSuffixEnum: { readonly ZIP: "zip"; readonly RAR: "rar"; }; export { CompressFileSuffixEnum, DocumentFileSuffixEnum, FileSuffixEnum, ImageFileSuffixEnum, MusicFileSuffixEnum, PptFileSuffixEnum, VideoFileSuffixEnum, };