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;
|
||||
locale: any;
|
||||
disabled: boolean;
|
||||
getCheckboxPropsByItem: (item, index) => any;
|
||||
getRecordKey: (record, index?) => string;
|
||||
getCheckboxPropsByItem: (item: any, index: number) => any;
|
||||
getRecordKey: (record: any, index?: number) => string;
|
||||
data: any[];
|
||||
prefixCls: string | undefined;
|
||||
onSelect: (key: string, index: number, selectFunc: any) => void;
|
||||
|
Loading…
Reference in New Issue
Block a user