UNPKG

@adobe/pdfservices-node-sdk

Version:

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

21 lines (20 loc) 598 B
import { PDFServicesJobResult } from "./PDFServicesJobResult"; import { Asset } from "../../io/Asset"; /** * This class encapsulates the result of {@link ExportPDFToImagesJob}. */ export declare class ExportPDFToImagesResult implements PDFServicesJobResult { private readonly _assets; /** * Constructs a new `ExportPDFToImagesResult` instance * * @param assets - List of result assets */ constructor(assets: Asset[]); /** * Returns the list of result assets * * @returns - The list of {@link Asset Asset(s)} */ get assets(): Asset[]; }