UNPKG

@itwin/frontend-devtools

Version:

Debug menu and supporting UI widgets

20 lines 519 B
/** @alpha */ export type NestMenuHandler = (expanded: boolean) => void; /** @alpha */ export interface NestedMenuProps { id?: string; label?: string; parent?: HTMLElement; expand?: boolean; handler?: NestMenuHandler; body?: HTMLElement; } /** @alpha */ export interface NestedMenu { div: HTMLDivElement; label: HTMLLabelElement; body: HTMLElement; } /** @alpha */ export declare function createNestedMenu(props: NestedMenuProps): NestedMenu; //# sourceMappingURL=NestedMenu.d.ts.map