type LegacyTableOptions<TData> = Omit<TableOptions<LegacyFeatures, TData>, "features"> & LegacyRowModelOptions<TData>;Defined in: react-table/src/useLegacyTable.ts:279
Legacy v8-style table options that work with useLegacyTable.
This type omits features and instead accepts the v8-style get*RowModel function options.
TData extends RowData
This is a compatibility layer for migrating from v8. Use useTable with an explicit features option instead.