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) 582 B
import { ClientConfig } from "../config/ClientConfig"; import { Credentials } from "../auth/Credentials"; import { RequestKey } from "./constants/RequestKey"; import { HttpBaseRequest } from "./http/HttpBaseRequest"; export declare class ExecutionContext { private readonly _clientConfig; private _pdfServiceRequestContext; private readonly _authenticator; constructor(credentials: Credentials, clientConfig?: ClientConfig); get clientConfig(): ClientConfig; getBaseRequestFromRequestContext(requestKey: RequestKey): HttpBaseRequest; validate(): void; }