r2-lcp-js
Version:
Readium 2 LCP bits for NodeJS (TypeScript)
23 lines • 811 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ContentKey = void 0;
var tslib_1 = require("tslib");
var ta_json_x_1 = require("ta-json-x");
var ContentKey = (function () {
function ContentKey() {
}
tslib_1.__decorate([
(0, ta_json_x_1.JsonProperty)("encrypted_value"),
tslib_1.__metadata("design:type", String)
], ContentKey.prototype, "EncryptedValue", void 0);
tslib_1.__decorate([
(0, ta_json_x_1.JsonProperty)("algorithm"),
tslib_1.__metadata("design:type", String)
], ContentKey.prototype, "Algorithm", void 0);
ContentKey = tslib_1.__decorate([
(0, ta_json_x_1.JsonObject)()
], ContentKey);
return ContentKey;
}());
exports.ContentKey = ContentKey;
//# sourceMappingURL=lcp-contentkey.js.map