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