/** * Copyright (c) 2019 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose * @author Sebastian Bittrich */ import { Unit, ResidueIndex, ElementIndex } from '../../../../mol-model/structure.js'; import { SortedArray } from '../../../../mol-data/int.js'; export interface ProteinInfo { readonly residueIndices: SortedArray; readonly cIndices: ArrayLike; readonly hIndices: ArrayLike; readonly oIndices: ArrayLike; readonly nIndices: ArrayLike; } export declare function getUnitProteinInfo(unit: Unit.Atomic): ProteinInfo;