function table_getPreExpandedRowModel<TFeatures, TData>(table): RowModel<TFeatures, TData>;function table_getPreExpandedRowModel<TFeatures, TData>(table): RowModel<TFeatures, TData>;Defined in: core/row-models/coreRowModelsFeature.utils.ts:176
Reads the row model immediately before row expansion.
Expansion runs after sorting, so this aliases table.getSortedRowModel().
TFeatures extends TableFeatures
TData extends RowData
Table_Internal<TFeatures, TData>
RowModel<TFeatures, TData>
const rowsBeforeExpansion = table_getPreExpandedRowModel(table)const rowsBeforeExpansion = table_getPreExpandedRowModel(table)