/** * A mapping of Media types and extension. *

*

* Refer : * * Mozilla MIME type * IANA media types */ export declare enum MimeType { /** * Represents ai mime type. */ AI = "application/illustrator", /** * Represents bmp mime type. */ BMP = "image/bmp", /** * Represents msword mime type. */ DOC = "application/msword", /** * Represents docx mime type. */ DOCX = "application/vnd.openxmlformats-officedocument.wordprocessingml.document", /** * Represents gif mime type. */ GIF = "image/gif", /** * Represents html mime type. */ HTML = "text/html", /** * Represents indd mime type. */ INDD = "application/x-indesign", /** * Represents jpeg mime type. */ JPEG = "image/jpeg", /** * Represents jpg mime type. */ JPG = "image/jpeg", /** * Represents pdf mime type. */ PDF = "application/pdf", /** * Represents png mime type. */ PNG = "image/png", /** * Represents ppt mime type. */ PPT = "application/vnd.ms-powerpoint", /** * Represents pptx mime type. */ PPTX = "application/vnd.openxmlformats-officedocument.presentationml.presentation", /** * Represents psd mime type. */ PSD = "image/vnd.adobe.photoshop", /** * Represents rtf mime type. */ RTF = "text/rtf", /** * Represents tif mime type. */ TIF = "image/tiff", /** * Represents tiff mime type. */ TIFF = "image/tiff", /** * Represents txt mime type. */ TXT = "text/plain", /** * Represents xls mime type. */ XLS = "application/vnd.ms-excel", /** * Represents xlsx mime type. */ XLSX = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", /** * Represents zip mime type. */ ZIP = "application/zip", /** * Represents json mime type. */ JSON = "application/json", /** * Represents csv mime type. */ CSV = "text/csv", /** * Represents svg mime type. */ SVG = "image/svg+xml" }