@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) • 537 B
TypeScript
import { PDFServicesJobResult } from "./PDFServicesJobResult";
import { Asset } from "../../io/Asset";
/**
* This class encapsulates the result of {@link CreatePDFJob}.
*/
export declare class CreatePDFResult implements PDFServicesJobResult {
private readonly _asset;
/**
* Constructs a new `CreatePDFResult` instance
*
* @param asset - The result asset
*/
constructor(asset: Asset);
/**
* Returns the result {@link Asset}
*
* @returns {@link Asset}
*/
get asset(): Asset;
}