function createGroupedRowModel<TFeatures, TData>(aggregationFns): (table) => () => RowModel<TFeatures, TData>;function createGroupedRowModel<TFeatures, TData>(aggregationFns): (table) => () => RowModel<TFeatures, TData>;Defined in: features/column-grouping/createGroupedRowModel.ts:27
Creates a memoized grouped row model factory.
The factory reads the relevant table state atoms and options, then returns a row model function used by the table row-model pipeline.
TFeatures extends TableFeatures
TData extends RowData = any
Record<keyof AggregationFns, AggregationFn<TFeatures, TData>>
(table): () => RowModel<TFeatures, TData>;(table): () => RowModel<TFeatures, TData>;Table<TFeatures, TData>
(): RowModel<TFeatures, TData>;(): RowModel<TFeatures, TData>;RowModel<TFeatures, TData>