@wireapp/cryptobox
Version:
High-level API with persistent storage for Proteus.
14 lines • 457 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.PersistedRecord = void 0;
const Cryptobox_1 = require("../Cryptobox");
class PersistedRecord {
constructor(serialised, id) {
this.created = Date.now();
this.id = id;
this.serialised = serialised;
this.version = Cryptobox_1.Cryptobox.VERSION;
}
}
exports.PersistedRecord = PersistedRecord;
//# sourceMappingURL=PersistedRecord.js.map
;