universalviewer
Version:
The Universal Viewer is a community-developed open source project on a mission to help you share your 📚📜📰📽️📻🗿 with the 🌎
17 lines • 558 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UVAdapter = void 0;
var UVAdapter = /** @class */ (function () {
function UVAdapter(readonly) {
this.readonly = false;
this.readonly = readonly;
}
UVAdapter.prototype.get = function (_key, _defaultValue) {
return undefined;
};
UVAdapter.prototype.set = function (_key, _value) { };
UVAdapter.prototype.dispose = function () { };
return UVAdapter;
}());
exports.UVAdapter = UVAdapter;
//# sourceMappingURL=UVAdapter.js.map