function createSortedRowModel<TFeatures, TData>(sortFns): (table) => () => RowModel<TFeatures, TData>;function createSortedRowModel<TFeatures, TData>(sortFns): (table) => () => RowModel<TFeatures, TData>;Defined in: features/row-sorting/createSortedRowModel.ts:17
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.
TFeatures extends TableFeatures
TData extends RowData
Record<keyof SortFns, SortFn<TFeatures, TData>>
(table): () => RowModel<TFeatures, TData>;(table): () => RowModel<TFeatures, TData>;Table<TFeatures, TData>
(): RowModel<TFeatures, TData>;(): RowModel<TFeatures, TData>;RowModel<TFeatures, TData>