mirador
Version:
An open-source, web-based 'multi-up' viewer that supports zoom-pan-rotate functionality, ability to display/compare simple images, and images with annotations.
19 lines (17 loc) • 347 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.OSDReferences = void 0;
var OSDReferences = {
/** */
get: function get(windowId) {
return this.refs[windowId];
},
refs: {},
/** */
set: function set(windowId, ref) {
this.refs[windowId] = ref;
}
};
exports.OSDReferences = OSDReferences;