molstar
Version:
A comprehensive macromolecular library.
19 lines • 795 B
JavaScript
/**
* Copyright (c) 2017 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author David Sehnal <david.sehnal@gmail.com>
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.SyncRuntimeContext = exports.SynchronousRuntimeContext = void 0;
var SynchronousRuntimeContext = /** @class */ (function () {
function SynchronousRuntimeContext() {
this.shouldUpdate = false;
this.isSynchronous = true;
}
SynchronousRuntimeContext.prototype.update = function (progress, dontNotify) { };
return SynchronousRuntimeContext;
}());
exports.SynchronousRuntimeContext = SynchronousRuntimeContext;
exports.SyncRuntimeContext = new SynchronousRuntimeContext();
//# sourceMappingURL=synchronous.js.map
;