UNPKG

@adobe/pdfservices-node-sdk

Version:

The Adobe PDF Services Node.js SDK provides APIs for creating, combining, exporting and manipulating PDFs.

18 lines (17 loc) 323 B
/** * Status types for {@link PDFServicesJob}. */ export declare enum PDFServicesJobStatus { /** * Represents in progress status */ IN_PROGRESS = "in progress", /** * Represents failed status */ FAILED = "failed", /** * Represents completed status */ DONE = "done" }