molstar
Version:
A comprehensive macromolecular library.
14 lines (13 loc) • 781 B
TypeScript
/**
* Copyright (c) 2021 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author Alexander Rose <alexander.rose@weirdbyte.de>
*/
import { ParamDefinition as PD } from '../../mol-util/param-definition';
import { CustomModelProperty } from '../common/custom-model-property';
import { HelixOrientation } from './helix-orientation/helix-orientation';
export declare const HelixOrientationParams: {};
export declare type HelixOrientationParams = typeof HelixOrientationParams;
export declare type HelixOrientationProps = PD.Values<HelixOrientationParams>;
export declare type HelixOrientationValue = HelixOrientation;
export declare const HelixOrientationProvider: CustomModelProperty.Provider<HelixOrientationParams, HelixOrientationValue>;