function createSortedRowModel<TFeatures, TData>(): (table) => () => RowModel<TFeatures, TData>;function createSortedRowModel<TFeatures, TData>(): (table) => () => RowModel<TFeatures, TData>;Defined in: features/row-sorting/createSortedRowModel.ts:20
Creates a memoized sorted 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.
Register sorting functions with the sortFns slot on the features option: tableFeatures({ rowSortingFeature, sortedRowModel: createSortedRowModel(), sortFns }).
TFeatures extends TableFeatures
TData extends RowData
(table): () => RowModel<TFeatures, TData>;(table): () => RowModel<TFeatures, TData>;Table<TFeatures, TData>
(): RowModel<TFeatures, TData>;(): RowModel<TFeatures, TData>;RowModel<TFeatures, TData>