@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) • 695 B
TypeScript
import { FieldOptions } from "../../../../pdfjobs/params/electronicseal/FieldOptions";
import { FieldLocation } from "../../../../pdfjobs/params/electronicseal/FieldLocation";
export declare class FieldParams {
protected readonly _pageNumber?: number;
protected readonly _fieldName: string;
protected readonly _visible?: boolean;
protected readonly _location?: FieldLocationParams;
constructor(fieldOptions: FieldOptions);
}
declare class FieldLocationParams {
protected readonly _left: number;
protected readonly _top: number;
protected readonly _right: number;
protected readonly _bottom: number;
constructor(fieldLocation: FieldLocation);
}
export {};