This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module 'react-table' { | |
type AccessorFunction = (row: object) => any | |
type Accessor = string | string[] | object | AccessorFunction | |
type Aggregator = (values: any, rows: any) => any | |
type TableCellRenderer = ((data: any, column: any) => React.ReactNode) | React.ReactNode | |
type FilterRender = (params: { column: Column, filter: any, onFilterChange: Function, key?: string }) => React.ReactElement<any> | |
type ComponentPropsGetter0 = (finalState: any, rowInfo: undefined, column: undefined, instance?: ReactTable) => object | undefined | |
type ComponentPropsGetterR = (finalState: any, rowInfo?: RowInfo, column?: undefined, instance?: ReactTable) => object | undefined |