From 42a299cf92fafadcffdc0867e9a5ec35fd8a93fc Mon Sep 17 00:00:00 2001 From: cpepin Date: Sat, 6 Apr 2019 10:59:02 -0400 Subject: [PATCH] Fixing type issue with PageRows --- types/react-table/index.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/types/react-table/index.d.ts b/types/react-table/index.d.ts index 6327eb6128..1b4c710c36 100644 --- a/types/react-table/index.d.ts +++ b/types/react-table/index.d.ts @@ -5,6 +5,7 @@ // Krzysztof Porębski , // Andy S , // Grzegorz Rozdzialik +// Cam Pepin // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.8 import * as React from 'react'; @@ -712,7 +713,6 @@ export interface FinalState extends TableProps { frozen: boolean; startRow: number; endRow: number; - pageRows: number; padRows: number; hasColumnFooter: boolean; hasHeaderGroups: boolean; @@ -722,6 +722,7 @@ export interface FinalState extends TableProps { allVisibleColumns: Array>; allDecoratedColumns: Array>; + pageRows: DerivedDataObject[]; resolvedData: DerivedDataObject[]; sortedData: DerivedDataObject[]; headerGroups: any[];