UNPKG

pdbe-molstar-3dbionotes

Version:
15 lines (14 loc) 513 B
/// <reference types="react" /> import { PurePluginUIComponent } from 'Molstar/mol-plugin-ui/base'; export declare class SegmentTree extends PurePluginUIComponent<{}, { segment?: any; isBusy: boolean; }> { componentDidMount(): void; get customState(): any; getSegmentParams: () => void; updateSegment: (val: any) => Promise<false | undefined>; hideStructures: (segmentIndex: number) => void; displayStructures: (segmentIndex: number) => Promise<void>; render(): JSX.Element; }