molstar
Version:
A comprehensive macromolecular library.
25 lines (24 loc) • 1.73 kB
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.Iterator = exports.IntMap = exports.LinkedIndex = exports.Tuple = exports.SortedArray = exports.Segmentation = exports.OrderedSet = exports.Interval = void 0;
const interval_1 = require("./int/interval");
Object.defineProperty(exports, "Interval", { enumerable: true, get: function () { return interval_1.Interval; } });
const ordered_set_1 = require("./int/ordered-set");
Object.defineProperty(exports, "OrderedSet", { enumerable: true, get: function () { return ordered_set_1.OrderedSet; } });
const segmentation_1 = require("./int/segmentation");
Object.defineProperty(exports, "Segmentation", { enumerable: true, get: function () { return segmentation_1.Segmentation; } });
const sorted_array_1 = require("./int/sorted-array");
Object.defineProperty(exports, "SortedArray", { enumerable: true, get: function () { return sorted_array_1.SortedArray; } });
const tuple_1 = require("./int/tuple");
Object.defineProperty(exports, "Tuple", { enumerable: true, get: function () { return tuple_1.IntTuple; } });
const linked_index_1 = require("./int/linked-index");
Object.defineProperty(exports, "LinkedIndex", { enumerable: true, get: function () { return linked_index_1.LinkedIndex; } });
const map_1 = require("./int/map");
Object.defineProperty(exports, "IntMap", { enumerable: true, get: function () { return map_1.IntMap; } });
const iterator_1 = require("./iterator");
Object.defineProperty(exports, "Iterator", { enumerable: true, get: function () { return iterator_1.Iterator; } });
;