Fixing type issue with PageRows

This commit is contained in:
cpepin
2019-04-06 10:59:02 -04:00
parent 6f7a141fb8
commit 42a299cf92

View File

@@ -5,6 +5,7 @@
// Krzysztof Porębski <https://github.com/Havret>,
// Andy S <https://github.com/andys8>,
// Grzegorz Rozdzialik <https://github.com/Gelio>
// Cam Pepin <https://github.com/cpepin>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8
import * as React from 'react';
@@ -712,7 +713,6 @@ export interface FinalState<D = any> extends TableProps<D> {
frozen: boolean;
startRow: number;
endRow: number;
pageRows: number;
padRows: number;
hasColumnFooter: boolean;
hasHeaderGroups: boolean;
@@ -722,6 +722,7 @@ export interface FinalState<D = any> extends TableProps<D> {
allVisibleColumns: Array<Column<D>>;
allDecoratedColumns: Array<Column<D>>;
pageRows: DerivedDataObject[];
resolvedData: DerivedDataObject[];
sortedData: DerivedDataObject[];
headerGroups: any[];