molstar
Version:
A comprehensive macromolecular library.
22 lines (21 loc) • 695 B
TypeScript
/**
* Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author David Sehnal <david.sehnal@gmail.com>
*/
/** Index of an element in the model data */
export declare type ElementIndex = {
readonly '@type': 'element-index';
} & number;
/** Index of a residue in the model data */
export declare type ResidueIndex = {
readonly '@type': 'residue-index';
} & number;
/** Index of a chain in the model data */
export declare type ChainIndex = {
readonly '@type': 'chain-index';
} & number;
/** Index of an entity in the model data */
export declare type EntityIndex = {
readonly '@type': 'entity-index';
} & number;