@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) • 473 B
TypeScript
import { TokenCredentials } from "./TokenCredentials";
import { Authenticator } from "./Authenticator";
import { SessionToken } from "./SessionToken";
export declare class TokenAuthenticator implements Authenticator {
private readonly _tokenCredentials;
private readonly _sessionToken;
constructor(tokenCredentials: TokenCredentials);
getSessionToken(): Promise<SessionToken>;
refreshSessionToken(): Promise<SessionToken>;
get clientId(): string;
}