function table_getPaginatedRowModel<TFeatures, TData>(table): RowModel<TFeatures, TData>;function table_getPaginatedRowModel<TFeatures, TData>(table): RowModel<TFeatures, TData>;Defined in: core/row-models/coreRowModelsFeature.utils.ts:240
Resolves the row model after pagination has sliced rows for the current page.
When manualPagination is enabled, or no paginated row-model factory was registered, this returns the pre-paginated row model because pagination is expected to happen before data reaches the table.
TFeatures extends TableFeatures
TData extends RowData
Table_Internal<TFeatures, TData>
RowModel<TFeatures, TData>
const pageRows = table_getPaginatedRowModel(table)const pageRows = table_getPaginatedRowModel(table)