Defined in: features/row-expanding/rowExpandingFeature.types.ts:124
TFeatures extends TableFeatures
TData extends RowData
optional expandedRowModel: (table) => () => RowModel<TFeatures, TData>;
Defined in: features/row-expanding/rowExpandingFeature.types.ts:131
This function is responsible for returning the expanded row model. If this function is not provided, the table will not expand rows. You can use the default exported getExpandedRowModel function to get the expanded row model or implement your own.
Table<TFeatures, TData>
(): RowModel<TFeatures, TData>;
RowModel<TFeatures, TData>