pdbe-molstar
Version:
Molstar implementation for PDBe
10 lines (9 loc) • 405 B
TypeScript
import { PluginUIComponent } from 'molstar/lib/mol-plugin-ui/base';
import { PluginCustomControlRegion } from '../plugin-custom-state';
/** Render all registered custom UI controls for the specified region */
export declare class CustomControls extends PluginUIComponent<{
region: PluginCustomControlRegion;
}> {
componentDidMount(): void;
render(): import("react/jsx-runtime").JSX.Element;
}