mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 14:20:12 +00:00
Fixing type issue with PageRows
This commit is contained in:
3
types/react-table/index.d.ts
vendored
3
types/react-table/index.d.ts
vendored
@@ -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[];
|
||||
|
||||
Reference in New Issue
Block a user