From 30eacdfb1b5c584c9b0776e75f6d5fb550817035 Mon Sep 17 00:00:00 2001 From: Junbin Huang Date: Sat, 2 Jun 2018 18:49:39 +0800 Subject: [PATCH] chore: fix lint (#10747) --- components/table/interface.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/table/interface.tsx b/components/table/interface.tsx index 8a3421bca0..4b775d2045 100644 --- a/components/table/interface.tsx +++ b/components/table/interface.tsx @@ -105,7 +105,7 @@ export interface TableProps { onExpandedRowsChange?: (expandedRowKeys: string[] | number[]) => void; onExpand?: (expanded: boolean, record: T) => void; onChange?: ( - pagination: TablePaginationConfig | boolean, + pagination: PaginationConfig | boolean, filters: Record, sorter: SorterResult, ) => void;