UNPKG

@adobe/pdfservices-node-sdk

Version:

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

14 lines (13 loc) 565 B
import { PageRange } from "../../../params/PageRange"; import { PageRanges } from "../../../../pdfjobs/params/PageRanges"; export declare class SplitPDFParamsPayload { protected readonly _splitoption: SplitOptions; constructor(pageRanges?: PageRanges, pageCount?: number, fileCount?: number); } declare class SplitOptions { protected readonly _pageRanges?: PageRange[]; protected readonly _pageCount?: number; protected readonly _fileCount?: number; constructor(pageRanges?: PageRanges, pageCount?: number, fileCount?: number); } export {};