UNPKG

@mui/x-tree-view

Version:

The community edition of the MUI X Tree View components.

12 lines 497 B
import type { SimpleTreeViewProps } from "../SimpleTreeView/index.mjs"; import type { RichTreeViewProps } from "../RichTreeView/index.mjs"; import type { TreeItemProps } from "../TreeItem/index.mjs"; export interface TreeViewComponentsPropsList { MuiSimpleTreeView: SimpleTreeViewProps<any>; MuiRichTreeView: RichTreeViewProps<any, any>; MuiTreeItem: TreeItemProps; } declare module '@mui/material/styles' { interface ComponentsPropsList extends TreeViewComponentsPropsList {} } export {};