Browse Source

fix: remove duplicate type (#14444)

Already defined in AbstractSelectProps
pull/14507/head
Wei Zhu 6 years ago
committed by zombieJ
parent
commit
c4026c4cb5
  1. 1
      components/tree-select/interface.tsx

1
components/tree-select/interface.tsx

@ -34,7 +34,6 @@ export interface TreeSelectProps extends AbstractSelectProps {
defaultValue?: string | number | Array<any>; defaultValue?: string | number | Array<any>;
dropdownStyle?: React.CSSProperties; dropdownStyle?: React.CSSProperties;
filterTreeNode?: (inputValue: string, treeNode: any) => boolean | boolean; filterTreeNode?: (inputValue: string, treeNode: any) => boolean | boolean;
getPopupContainer?: (triggerNode?: Element) => HTMLElement;
labelInValue?: boolean; labelInValue?: boolean;
loadData?: (node: any) => void; loadData?: (node: any) => void;
maxTagCount?: number; maxTagCount?: number;

Loading…
Cancel
Save