asposepdfcloud
Version:
Aspose.PDF Cloud is a REST API for creating and editing PDF files. Most popular features proposed by Aspose.PDF Cloud: PDF to Word, Convert PDF to Image, Merge PDF, Split PDF, Add Images to PDF, Rotate PDF. It can also be used to convert PDF files to diff
21 lines • 623 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Configuration = void 0;
const auth_1 = require("./auth");
class Configuration {
constructor(selfHost, appSID, appKey, baseUrl, debugMode) {
if (baseUrl) {
this.baseUrl = baseUrl;
}
this.selfHost = selfHost;
this.appSID = appSID;
this.appKey = appKey;
this.debugMode = debugMode;
this.authentication = new auth_1.OAuth();
}
getApiBaseUrl() {
return this.baseUrl;
}
}
exports.Configuration = Configuration;
//# sourceMappingURL=configuration.js.map
;