UNPKG

mui-nav-menu

Version:

Navigation menu component based on material ui

9 lines (8 loc) 355 B
import { ItemViewData } from "../types"; export declare const useMenuNodes: () => { processItem: (item: any, parentId: any, index: any) => void; getChildrenIds: (parentId: string, excludeDisabled?: boolean) => string[]; getNode: (menuId: string) => ItemViewData; clearNodes: () => void; getDescendantIds: (parentId: string) => any; };