@adobe/pdfservices-node-sdk
Version:
The Adobe PDF Services Node.js SDK provides APIs for creating, combining, exporting and manipulating PDFs.
26 lines (25 loc) • 672 B
TypeScript
/**
* Supported target formats for {@link ExportPDFJob}
*/
export declare enum ExportPDFTargetFormat {
/**
* Represents "application/msword" media type
*/
DOC = "doc",
/**
* Represents "application/vnd.openxmlformats-officedocument.wordprocessingml.document" media type
*/
DOCX = "docx",
/**
* Represents "application/vnd.openxmlformats-officedocument.presentationml.presentation" media type
*/
PPTX = "pptx",
/**
* Represents "text/rtf" media type
*/
RTF = "rtf",
/**
* Represents "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" media type
*/
XLSX = "xlsx"
}