UNPKG

molstar

Version:

A comprehensive macromolecular library.

21 lines (20 loc) 1.39 kB
"use strict"; /** * 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.chunkedSubtask = exports.MultistepTask = exports.Scheduler = exports.Progress = exports.RuntimeContext = exports.Task = void 0; const task_1 = require("./task"); Object.defineProperty(exports, "Task", { enumerable: true, get: function () { return task_1.Task; } }); const runtime_context_1 = require("./execution/runtime-context"); Object.defineProperty(exports, "RuntimeContext", { enumerable: true, get: function () { return runtime_context_1.RuntimeContext; } }); const progress_1 = require("./execution/progress"); Object.defineProperty(exports, "Progress", { enumerable: true, get: function () { return progress_1.Progress; } }); const scheduler_1 = require("./util/scheduler"); Object.defineProperty(exports, "Scheduler", { enumerable: true, get: function () { return scheduler_1.Scheduler; } }); const multistep_1 = require("./util/multistep"); Object.defineProperty(exports, "MultistepTask", { enumerable: true, get: function () { return multistep_1.MultistepTask; } }); const chunked_1 = require("./util/chunked"); Object.defineProperty(exports, "chunkedSubtask", { enumerable: true, get: function () { return chunked_1.chunkedSubtask; } });