type LegacyTableOptions<TData> = Omit<TableOptions<StockFeatures, TData>, "_features" | "_rowModels"> & LegacyRowModelOptions<TData>;
Defined in: useLegacyTable.ts:247
Legacy v8-style table options that work with useLegacyTable.
This type omits _features and _rowModels 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 explicit _features and _rowModels instead.