UNPKG

molstar

Version:

A comprehensive macromolecular library.

22 lines (21 loc) 628 B
/** * 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 { LeftPanelTabName } from '../mol-plugin/layout'; import { PluginUIComponent } from './base'; 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; }