fix implicit type any in checkbox props by item values getCheckboxPropsByItem and getRecordKey (#5207)

This commit is contained in:
Colton Pierson 2017-03-08 00:12:33 -08:00 committed by Wei Zhu
parent 35642ec2a9
commit 47d107bb2a

View File

@ -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;