@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
23 lines • 694 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TrustStoreServerCheck = void 0;
const index_1 = require("./../index");
class TrustStoreServerCheck extends index_1.ServerCheck {
constructor(data) {
super(data);
}
static fromJson(data) {
if (data === undefined || data === null) {
return data;
}
return new TrustStoreServerCheck(data);
}
toJson() {
return Object.assign({}, (super.toJson()));
}
clone() {
return TrustStoreServerCheck.fromJson(this.toJson());
}
}
exports.TrustStoreServerCheck = TrustStoreServerCheck;
//# sourceMappingURL=TrustStoreServerCheck.js.map