UNPKG

@mui/x-tree-view

Version:

The community edition of the MUI X Tree View components.

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