molstar
Version:
A comprehensive macromolecular library.
18 lines (17 loc) • 570 B
TypeScript
/**
* Copyright (c) 2019 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author David Sehnal <david.sehnal@gmail.com>
*/
/// <reference types="react" />
import { PluginUIComponent } from '../base';
import { ParamOnChange } from '../controls/parameters';
export declare class AnimationControls extends PluginUIComponent<{
onStart?: () => void;
}> {
componentDidMount(): void;
updateParams: ParamOnChange;
updateCurrentParams: ParamOnChange;
startOrStop: () => void;
render(): JSX.Element | null;
}