UNPKG

588 BTypeScriptView Raw
1import React from 'react';
2export interface DrilldownMenuProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'ref' | 'onSelect'> {
3 /** Items within drilldown sub-menu */
4 children?: React.ReactNode;
5 /** ID of the drilldown sub-menu */
6 id?: string;
7 /** Flag indicating whether the menu is drilled in */
8 isMenuDrilledIn?: boolean;
9 /** Optional callback to get the height of the sub menu */
10 getHeight?: (height: string) => void;
11}
12export declare const DrilldownMenu: React.FunctionComponent<DrilldownMenuProps>;
13//# sourceMappingURL=DrilldownMenu.d.ts.map
\No newline at end of file