molstar
Version:
A comprehensive macromolecular library.
25 lines (24 loc) • 1.03 kB
TypeScript
/**
* Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author David Sehnal <david.sehnal@gmail.com>
*/
export * from './behavior/behavior';
import * as StaticState from './behavior/static/state';
import * as StaticRepresentation from './behavior/static/representation';
import * as StaticCamera from './behavior/static/camera';
import * as StaticMisc from './behavior/static/misc';
import * as DynamicRepresentation from './behavior/dynamic/representation';
import * as DynamicCamera from './behavior/dynamic/camera';
import * as DynamicCustomProps from './behavior/dynamic/custom-props';
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;
CustomProps: typeof DynamicCustomProps;
};