UNPKG

@mui/x-tree-view

Version:

The community edition of the MUI X Tree View components.

9 lines • 339 B
import type { TreeViewItemId } from "../../../models/index.mjs"; export interface RichTreeViewLazyLoadedItemsStatus { /** * For each item currently loading its children, the expected children count. * `-1` when the count is unknown. */ loading: Record<TreeViewItemId, number>; errors: Record<TreeViewItemId, Error | null>; }