UNPKG

@adobe/pdfservices-node-sdk

Version:

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

10 lines (9 loc) 244 B
export declare class PageRange { private readonly _start; private readonly _end?; constructor(start: number, end?: number); validate(): void; toString(): string; get start(): number; get end(): number | undefined; }