From 2cf2b678e863a8ccdef45c38c652f859ef3c6d76 Mon Sep 17 00:00:00 2001 From: Zhiqiang Gong Date: Thu, 6 Sep 2018 11:49:08 +0800 Subject: [PATCH] update tree-select typescript (#12091) --- 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 3f1dad9aca..15129a97af 100644 --- a/components/tree-select/interface.tsx +++ b/components/tree-select/interface.tsx @@ -33,6 +33,7 @@ export interface TreeSelectProps extends AbstractSelectProps { value?: string | Array; defaultValue?: string | Array; multiple?: boolean; + maxTagCount?: number; onSelect?: (value: any) => void; onChange?: (value: any, label: any) => void; onSearch?: (value: any) => void;