mui-nav-menu
Version:
Navigation menu component based on material ui
9 lines (8 loc) • 355 B
TypeScript
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;
};