UNPKG

molstar

Version:

A comprehensive macromolecular library.

28 lines (27 loc) 1.18 kB
/** * Copyright (c) 2018-2025 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> */ export * from './behavior/behavior.js'; import * as StaticState from './behavior/static/state.js'; import * as StaticRepresentation from './behavior/static/representation.js'; import * as StaticCamera from './behavior/static/camera.js'; import * as StaticMisc from './behavior/static/misc.js'; import * as DynamicRepresentation from './behavior/dynamic/representation.js'; import * as DynamicCamera from './behavior/dynamic/camera.js'; import * as DynamicState from './behavior/dynamic/state.js'; import * as DynamicCustomProps from './behavior/dynamic/custom-props.js'; export declare const BuiltInPluginBehaviors: { State: typeof StaticState; Representation: typeof StaticRepresentation; Camera: typeof StaticCamera; Misc: typeof StaticMisc; }; export declare const PluginBehaviors: { Representation: typeof DynamicRepresentation; Camera: typeof DynamicCamera; State: typeof DynamicState; CustomProps: typeof DynamicCustomProps; };