function table_getSortedRowModel<TFeatures, TData>(table): RowModel<TFeatures, TData>;function table_getSortedRowModel<TFeatures, TData>(table): RowModel<TFeatures, TData>;Defined in: core/row-models/coreRowModelsFeature.utils.ts:150
Resolves the row model after sorting has been applied.
When manualSorting is enabled, or no sorted row-model factory was registered, this returns the pre-sorted row model because sorted data is expected to be supplied by the caller.
TFeatures extends TableFeatures
TData extends RowData
Table_Internal<TFeatures, TData>
RowModel<TFeatures, TData>
const sortedRows = table_getSortedRowModel(table)const sortedRows = table_getSortedRowModel(table)