UNPKG

@adobe/pdfservices-node-sdk

Version:

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

34 lines (33 loc) 1.46 kB
import { PDFServicesJobParams } from "../PDFServicesJobParams"; /** * Parameters for Accessibility Checker Operation in PDF using {@link PDFAccessibilityCheckerJob}. */ export declare class PDFAccessibilityCheckerParams implements PDFServicesJobParams { private readonly _pageStart?; private readonly _pageEnd?; /** * Constructs a new `PDFAccessibilityCheckerParams` instance. * * @param params The parameters for constructing an instance of `PDFAccessibilityCheckerParams`. * @param [params.pageStart] The page number from which the accessibility check should start. If not provided, * the first page is considered the default start page. It should be greater than equal to 1. * @param [params.pageEnd] The page number at which the accessibility check should end. If not provided, * the last page is considered the default end page. It should be greater than equal to 1. */ constructor(params: { pageStart?: number; pageEnd?: number; }); /** * Returns the page number from which the accessibility check should start. * * @returns The page number from which the accessibility check should start. */ get pageStart(): number | undefined; /** * Returns the page number at which the accessibility check should end. * * @returns The page number at which the accessibility check should end. */ get pageEnd(): number | undefined; }