import type RcTree from 'rc-tree'; import { TreeNode } from 'rc-tree'; import type { BasicDataNode } from 'rc-tree'; import type { DataNode } from 'rc-tree/lib/interface'; import type { TreeProps } from './Tree'; import TreePure from './Tree'; import DirectoryTree from './DirectoryTree'; export type { DataNode }; export type { EventDataNode } from 'rc-tree/lib/interface'; export type { DirectoryTreeProps, ExpandAction as DirectoryTreeExpandAction, } from './DirectoryTree'; export type { AntdTreeNodeAttribute, AntTreeNode, AntTreeNodeCheckedEvent, AntTreeNodeExpandedEvent, AntTreeNodeMouseEvent, AntTreeNodeProps, AntTreeNodeSelectedEvent, TreeProps, } from './Tree'; type CompoundedComponent = (( props: React.PropsWithChildren> & { ref?: React.Ref }, ) => React.ReactElement) & { TreeNode: typeof TreeNode; DirectoryTree: typeof DirectoryTree; }; const Tree = TreePure as unknown as CompoundedComponent; Tree.DirectoryTree = DirectoryTree; Tree.TreeNode = TreeNode; export default Tree;