UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

17 lines 447 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AuthMethods = exports.AuthMethod = void 0; class AuthMethod { constructor(key) { this.key = key; } getKey() { return this.key; } } exports.AuthMethod = AuthMethod; exports.AuthMethods = { BASIC_AUTHORIZATION: new AuthMethod("Basic"), BEARER_AUTHORIZATION: new AuthMethod("Bearer") }; //# sourceMappingURL=AuthMethod.js.map