pdbe-molstar-3dbionotes
Version:
Molstar implementation for PDBe
15 lines (14 loc) • 513 B
TypeScript
/// <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;
}