UNPKG

@adobe/pdfservices-node-sdk

Version:

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

12 lines (11 loc) 316 B
import { Credentials } from "../../auth/Credentials"; export declare class TokenCredentials implements Credentials { private readonly _clientId; private readonly _token; constructor(params: { clientId: string; token: string; }); get clientId(): string; get token(): string; }