/** * Copyright (c) 2017 molio contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal */ import OrderedSet from '../mol-base/collections/ordered-set' interface Conformation { x: ArrayLike, y: ArrayLike, z: ArrayLike, // Assign a secondary structure type to each residue. secondaryStructureType: ArrayLike, secondaryStructureAtomOffsets: OrderedSet } export default Conformation