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