Skip to content

Commit

Permalink
Merge pull request #17581 from MrHeer/fix-#17555
Browse files Browse the repository at this point in the history
fix: Typescript definition of CascaderOptionType missing some fields #17555
  • Loading branch information
afc163 committed Jul 11, 2019
2 parents 4e629da + 7e4e5a8 commit 79bff3f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions components/cascader/index.tsx
Expand Up @@ -15,6 +15,8 @@ export interface CascaderOptionType {
value?: string;
label?: React.ReactNode;
disabled?: boolean;
isLeaf?: boolean;
loading?: boolean;
children?: Array<CascaderOptionType>;
[key: string]: any;
}
Expand Down

0 comments on commit 79bff3f

Please sign in to comment.