molstar
Version:
A comprehensive macromolecular library.
18 lines (17 loc) • 611 B
JavaScript
/**
* Copyright (c) 2019 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.StateActions = void 0;
var tslib_1 = require("tslib");
var Structure = tslib_1.__importStar(require("./actions/structure"));
var Volume = tslib_1.__importStar(require("./actions/volume"));
var DataFormat = tslib_1.__importStar(require("./actions/file"));
exports.StateActions = {
Structure: Structure,
Volume: Volume,
DataFormat: DataFormat
};
;