@adobe/pdfservices-node-sdk
Version:
The Adobe PDF Services Node.js SDK provides APIs for creating, combining, exporting and manipulating PDFs.
29 lines (28 loc) • 843 B
TypeScript
import { Asset } from "../../io/Asset";
import { PDFServicesJobResult } from "./PDFServicesJobResult";
/**
* This class encapsulates the result of {@link PDFAccessibilityCheckerJob}.
*/
export declare class PDFAccessibilityCheckerResult implements PDFServicesJobResult {
private readonly _asset;
private readonly _report;
/**
* Constructs a new `PDFAccessibilityCheckerResult` instance.
*
* @param asset - The result asset.
* @param report - The report asset.
*/
constructor(asset: Asset, report: Asset);
/**
* Returns the result {@link Asset}.
*
* @returns {@link Asset}
*/
get asset(): Asset;
/**
* Returns the report {@link Asset}, if an internal asset was used as input PDF.
*
* @returns {@link Asset}
*/
get report(): Asset | undefined;
}