type LegacyReactTable<TData> = ReactTable<StockFeatures, TData, TableState<StockFeatures>> & object;
Defined in: useLegacyTable.ts:258
Legacy table instance type that includes the v8-style getState() method.
getState: () => TableState<StockFeatures>;
Returns the current table state.
TableState<StockFeatures>
In v9, access state directly via table.state or use table.store.state for the full state.
TData extends RowData
Use useTable with explicit state selection instead.