UNPKG

@mui/x-tree-view

Version:

The community edition of the MUI X Tree View components.

12 lines 482 B
import { SimpleTreeViewProps } from "../SimpleTreeView/index.mjs"; import { RichTreeViewProps } from "../RichTreeView/index.mjs"; import { 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 {};