@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
11 lines (10 loc) • 405 B
TypeScript
import { AbstractAuthMaterial } from "./AbstractAuthMaterial";
import { Credentials } from "./token";
export declare class AuthenticationMaterial extends AbstractAuthMaterial {
private readonly userName;
private readonly password;
constructor(user: string, password: string);
getCredentials(): Credentials | undefined;
getRawAuthHeader(): string | undefined;
getToken(): string;
}