114 lines
1.5 KiB
Plaintext
114 lines
1.5 KiB
Plaintext
export const commonApiAcceptableFileExtensionsForDocumnet: string[] = [
|
|
'doc',
|
|
'docx',
|
|
'dot',
|
|
'dotx',
|
|
'ppt',
|
|
'pptx',
|
|
'pot',
|
|
'potx',
|
|
'pps',
|
|
'ppsx',
|
|
'xls',
|
|
'xlsx',
|
|
'xlt',
|
|
'xltx',
|
|
'rtf',
|
|
'txt',
|
|
'csv',
|
|
'pdf',
|
|
'hwp',
|
|
'log',
|
|
'one',
|
|
'ps'
|
|
];
|
|
|
|
export const commonApiAcceptableFileExtensionsForImage: string[] = [
|
|
'tif',
|
|
'ogg',
|
|
'psd',
|
|
'ai',
|
|
'bmp',
|
|
'gif',
|
|
'jpg',
|
|
'jpeg',
|
|
'png',
|
|
'cdr',
|
|
'emf',
|
|
'eps',
|
|
'tiff',
|
|
'wmf'
|
|
];
|
|
export const commonApiAcceptableFileExtensionsForArchive: string[] = [
|
|
'7z',
|
|
'zip',
|
|
'alz',
|
|
'a00',
|
|
'a01',
|
|
'a02',
|
|
'a03',
|
|
'a04',
|
|
'a05',
|
|
'a06',
|
|
'a07',
|
|
'a08',
|
|
'a09',
|
|
'tar',
|
|
'rar',
|
|
'gz'
|
|
];
|
|
export const commonApiAcceptableFileExtensionsForAudio: string[] = [
|
|
'wav',
|
|
'mp3',
|
|
'm4a',
|
|
'aac',
|
|
'aiff',
|
|
'flac',
|
|
'm4a',
|
|
'mp2',
|
|
'mpega',
|
|
'mpga',
|
|
'ogg',
|
|
'wma'
|
|
];
|
|
export const commonApiAcceptableFileExtensionsForFlash: string[] = [
|
|
'swf',
|
|
'fla',
|
|
'flv'
|
|
];
|
|
export const commonApiAcceptableFileExtensionsForVideo: string[] = [
|
|
'avi',
|
|
'mp4',
|
|
'wmv',
|
|
'mov',
|
|
'3gp',
|
|
'mkv',
|
|
'ts',
|
|
'webm',
|
|
'm4v',
|
|
'mpg',
|
|
'mpeg',
|
|
'rv',
|
|
'ts',
|
|
'webm'
|
|
];
|
|
export const commonApiAcceptableFileExtensionsForFolder: string[] = [
|
|
'zdr',
|
|
'dat'
|
|
];
|
|
|
|
export const commonApiAcceptableFileExtensionsForCAD: string[] = [
|
|
'asc',
|
|
'dwg',
|
|
'dws',
|
|
'dwt',
|
|
'dxf',
|
|
'pgp',
|
|
'plt'
|
|
];
|
|
|
|
export const commonApiAcceptableFileExtensionsForMac: string[] = [
|
|
'pages',
|
|
'keynote'
|
|
];
|