mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 21:19:37 +08:00
fix implicit type any in checkbox props by item values getCheckboxPropsByItem and getRecordKey (#5207)
This commit is contained in:
parent
35642ec2a9
commit
47d107bb2a
@ -15,8 +15,8 @@ export interface SelectionCheckboxAllProps {
|
|||||||
store: Store;
|
store: Store;
|
||||||
locale: any;
|
locale: any;
|
||||||
disabled: boolean;
|
disabled: boolean;
|
||||||
getCheckboxPropsByItem: (item, index) => any;
|
getCheckboxPropsByItem: (item: any, index: number) => any;
|
||||||
getRecordKey: (record, index?) => string;
|
getRecordKey: (record: any, index?: number) => string;
|
||||||
data: any[];
|
data: any[];
|
||||||
prefixCls: string | undefined;
|
prefixCls: string | undefined;
|
||||||
onSelect: (key: string, index: number, selectFunc: any) => void;
|
onSelect: (key: string, index: number, selectFunc: any) => void;
|
||||||
|
Loading…
Reference in New Issue
Block a user