fix: SelectionSelectFn selectedRows to T generic type (#28206)

close #28204
This commit is contained in:
desperado 2020-12-04 05:47:30 -06:00 committed by GitHub
parent 28d3d9038f
commit e22e27dbae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -126,7 +126,7 @@ export interface SelectionItem {
export type SelectionSelectFn<T> = (
record: T,
selected: boolean,
selectedRows: Object[],
selectedRows: T[],
nativeEvent: Event,
) => void;