vim-webgl-component
Version:
A demonstration app built on top of the vim-webgl-viewer
11 lines (10 loc) • 431 B
TypeScript
import { IControlBarButtonItem } from './controlBarButton';
export declare const sectionDefaultStyle: string;
export declare const sectionBlueStyle: string;
export interface IControlBarSection {
id: string;
enable?: (() => boolean) | undefined;
buttons: IControlBarButtonItem[];
style: string;
}
export declare function createSection(section: IControlBarSection): import("react/jsx-runtime").JSX.Element;