-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextensions.ts
70 lines (70 loc) · 3.43 KB
/
extensions.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
export const APPLICATION_7Z: string = '7z';
export const APPLICATION_DOCX: string = 'docx'; // alias
export const APPLICATION_EPUB_ZIP: string = 'epub';
export const APPLICATION_JAVA_ARCHIVE: string = 'jar';
export const APPLICATION_JAVASCRIPT: string = 'js';
export const APPLICATION_JSON: string = 'json';
export const APPLICATION_MSWORD: string = 'doc';
export const APPLICATION_OCTET_STREAM: string = 'arc';
export const APPLICATION_OCTET_STREAM2: string = 'bin';
export const APPLICATION_OGG: string = 'ogx';
export const APPLICATION_PDF: string = 'pdf';
export const APPLICATION_RTF: string = 'rtf';
export const APPLICATION_TYPESCRIPT: string = 'ts';
export const APPLICATION_VND_AMAZON_EBOOK: string = 'azw';
export const APPLICATION_VND_APPLE_INSTALLER: string = 'mpkg';
export const APPLICATION_VND_MOZILLA_XUL_XML: string = 'xul';
export const APPLICATION_VND_MS_EXCEL: string = 'xls';
export const APPLICATION_VND_MS_FONTOBJECT: string = 'eot';
export const APPLICATION_VND_MS_POWERPOINT_OPENXML: string = 'pptx';
export const APPLICATION_VND_MS_POWERPOINT: string = 'ppt';
export const APPLICATION_VND_OASIS_OPENDOCUMENT_PRESENTATION: string = 'odp';
export const APPLICATION_VND_OASIS_OPENDOCUMENT_SPREADSHEET_SHEET: string = 'xlsx';
export const APPLICATION_VND_OASIS_OPENDOCUMENT_SPREADSHEET: string = 'ods';
export const APPLICATION_VND_OASIS_OPENDOCUMENT_TEXT: string = 'odt';
export const APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML: string = 'pptx';
export const APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML: string = 'docx';
export const APPLICATION_VND_VISIO: string = 'vsd';
export const APPLICATION_X_ABIWORD: string = 'abw';
export const APPLICATION_X_BZIP: string = 'bz';
export const APPLICATION_X_BZIP2: string = 'bz2';
export const APPLICATION_X_CSH: string = 'csh';
export const APPLICATION_X_RAR_COMPRESSED: string = 'rar';
export const APPLICATION_X_SH: string = 'sh';
export const APPLICATION_X_SHOCKWAWE_FLASH: string = 'swf';
export const APPLICATION_X_TAR: string = 'tar';
export const APPLICATION_XHTML_XML: string = 'xhtml';
export const APPLICATION_XML: string = 'xml';
export const APPLICATION_ZIP: string = 'zip';
export const AUDIO_3GPP: string = '3gp';
export const AUDIO_3GPP2: string = '3g2';
export const AUDIO_AAC: string = 'aac';
export const AUDIO_MID: string = 'mid';
export const AUDIO_MIDI: string = 'midi';
export const AUDIO_OGG: string = 'oga';
export const AUDIO_WEBM: string = 'weba';
export const AUDIO_X_WAV: string = 'wav';
export const FONT_OTF: string = 'otf';
export const FONT_TTF: string = 'ttf';
export const FONT_WOFF: string = 'woff';
export const FONT_WOFF2: string = 'woff2';
export const IMAGE_GIF: string = 'gif';
export const IMAGE_JPEG: string = 'jpeg';
export const IMAGE_JPG: string = 'jpg';
export const IMAGE_PNG: string = 'png';
export const IMAGE_SVG_XML: string = 'svg';
export const IMAGE_TIF: string = 'tif';
export const IMAGE_TIFF: string = 'tiff';
export const IMAGE_WEBP: string = 'webp';
export const IMAGE_X_ICON: string = 'ico';
export const TEXT_CALENDAR: string = 'ics';
export const TEXT_CSS: string = 'css';
export const TEXT_CSV: string = 'csv';
export const TEXT_HTM: string = 'htm';
export const TEXT_HTML: string = 'html';
export const VIDEO_3GPP: string = '3gp';
export const VIDEO_3GPP2: string = '3g2';
export const VIDEO_MPEG: string = 'mpeg';
export const VIDEO_OGG: string = 'ogv';
export const VIDEO_WEBM: string = 'webm';
export const VIDEO_X_MSVIDEO: string = 'avi';