@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) • 541 B
TypeScript
import { TSAParams } from "./TSAParams";
import { TSAOptions } from "../../../../pdfjobs/params/electronicseal/TSAOptions";
export declare class RFC3161TSAParams implements TSAParams {
protected readonly _url: string;
protected readonly _credentialAuthParameters?: TSABasicAuthCredentialParams;
constructor(tsaOptions: TSAOptions);
}
declare class TSABasicAuthCredentialParams {
protected readonly _username: string;
protected readonly _password: string;
constructor(username: string, password: string);
}
export {};