@adobe/pdfservices-node-sdk
Version:
The Adobe PDF Services Node.js SDK provides APIs for creating, combining, exporting and manipulating PDFs.
108 lines (107 loc) • 2.39 kB
TypeScript
/**
* A mapping of Media types and extension.
* <p>
* <p>
* Refer :
* <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Complete_list_of_MIME_types">
* Mozilla MIME type</a>
* <a href="https://www.iana.org/assignments/media-types/media-types.xhtml">IANA media types</a>
*/
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"
}