From ae9e02a6c38c3308e9e920b8ec1a5dde6489543c Mon Sep 17 00:00:00 2001 From: afc163 Date: Tue, 28 Mar 2017 13:45:10 +0800 Subject: [PATCH] Fix treeDefaultExpandedKeys ts define, close #5349 --- components/tree-select/interface.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/components/tree-select/interface.tsx b/components/tree-select/interface.tsx index 30118c6766..3c3cf7e67c 100644 --- a/components/tree-select/interface.tsx +++ b/components/tree-select/interface.tsx @@ -27,6 +27,7 @@ export interface TreeSelectProps { disabled?: boolean; treeDefaultExpandAll?: boolean; treeCheckable?: boolean | React.ReactNode; + treeDefaultExpandedKeys?: Array; filterTreeNode?: (inputValue: string, treeNode: any) => boolean | boolean; treeNodeFilterProp?: string; treeNodeLabelProp?: string;