molstar
Version:
A comprehensive macromolecular library.
13 lines (12 loc) • 449 B
JavaScript
/**
* Copyright (c) 2017-2022 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author David Sehnal <david.sehnal@gmail.com>
* @author Alexander Rose <alexander.rose@weirdbyte.de>
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.SecondaryStructure = SecondaryStructure;
function SecondaryStructure(type, key, elements, getIndex) {
return { type, key, elements, getIndex };
}
;