This commit is contained in:
zombiej 2018-08-23 20:38:56 +08:00
parent 044982ddb7
commit 500ef62638

View File

@ -37,6 +37,8 @@ export interface AntTreeNodeProps {
selectable?: boolean;
icon?: ((treeNode: AntdTreeNodeAttribute) => React.ReactNode) | React.ReactNode;
children?: React.ReactNode;
[customProp: string]: any;
}
export interface AntTreeNode extends React.Component<AntTreeNodeProps, {}> { }