mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-18 11:18:14 +08:00
Merge pull request #17581 from MrHeer/fix-#17555
fix: Typescript definition of CascaderOptionType missing some fields #17555
This commit is contained in:
commit
79bff3ff61
@ -15,6 +15,8 @@ export interface CascaderOptionType {
|
|||||||
value?: string;
|
value?: string;
|
||||||
label?: React.ReactNode;
|
label?: React.ReactNode;
|
||||||
disabled?: boolean;
|
disabled?: boolean;
|
||||||
|
isLeaf?: boolean;
|
||||||
|
loading?: boolean;
|
||||||
children?: Array<CascaderOptionType>;
|
children?: Array<CascaderOptionType>;
|
||||||
[key: string]: any;
|
[key: string]: any;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user