1
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
import type RcTree from '@rc-component/tree';
|
||||
import type { BasicDataNode } from '@rc-component/tree';
|
||||
import { TreeNode } from '@rc-component/tree';
|
||||
import type { DataNode } from '@rc-component/tree/lib/interface';
|
||||
import DirectoryTree from './DirectoryTree';
|
||||
import type { TreeProps } from './Tree';
|
||||
export type { ExpandAction as DirectoryTreeExpandAction, DirectoryTreeProps, } from './DirectoryTree';
|
||||
export type { AntdTreeNodeAttribute, AntTreeNode, AntTreeNodeCheckedEvent, AntTreeNodeExpandedEvent, AntTreeNodeMouseEvent, AntTreeNodeProps, AntTreeNodeSelectedEvent, TreeProps, TreeSemanticClassNames, TreeSemanticName, TreeSemanticStyles, } from './Tree';
|
||||
export type { EventDataNode } from '@rc-component/tree/lib/interface';
|
||||
export type { BasicDataNode, DataNode };
|
||||
type CompoundedComponent = (<T extends BasicDataNode | DataNode = DataNode>(props: React.PropsWithChildren<TreeProps<T>> & React.RefAttributes<RcTree>) => React.ReactElement) & {
|
||||
TreeNode: typeof TreeNode;
|
||||
DirectoryTree: typeof DirectoryTree;
|
||||
};
|
||||
declare const Tree: CompoundedComponent;
|
||||
export default Tree;
|
||||
Reference in New Issue
Block a user