@adobe/pdfservices-node-sdk
Version:
The Adobe PDF Services Node.js SDK provides APIs for creating, combining, exporting and manipulating PDFs.
12 lines (11 loc) • 865 B
TypeScript
import { ExtractElementType } from "../../../../pdfjobs/params/extractpdf/ExtractElementType";
import { TableStructureType } from "../../../../pdfjobs/params/extractpdf/TableStructureType";
import { ExtractRenditionsElementType } from "../../../../pdfjobs/params/extractpdf/ExtractRenditionsElementType";
export declare class ExtractPDFParamsPayload {
protected readonly _getCharBounds?: boolean;
protected readonly _includeStyling?: boolean;
protected readonly _elementsToExtract?: ExtractElementType[];
protected readonly _tableOutputFormat?: TableStructureType;
protected readonly _renditionsToExtract?: ExtractRenditionsElementType[];
constructor(getCharBounds?: boolean, includeStyling?: boolean, elementsToExtract?: ExtractElementType[], tableOutputFormat?: TableStructureType, renditionsToExtract?: ExtractRenditionsElementType[]);
}