molstar
Version:
A comprehensive macromolecular library.
29 lines (28 loc) • 872 B
TypeScript
/**
* Copyright (c) 2019-2022 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>
*/
/// <reference types="react" />
import { LeftPanelTabName } from '../mol-plugin/layout';
import { PluginUIComponent } from './base';
export declare class CustomImportControls extends PluginUIComponent<{
initiallyCollapsed?: boolean;
}> {
componentDidMount(): void;
render(): JSX.Element | null;
}
export declare class LeftPanelControls extends PluginUIComponent<{}, {
tab: LeftPanelTabName;
}> {
state: {
tab: LeftPanelTabName;
};
componentDidMount(): void;
set: (tab: LeftPanelTabName) => void;
tabs: {
[K in LeftPanelTabName]: JSX.Element;
};
render(): JSX.Element;
}