function createFilteredRowModel<TFeatures, TData>(): (table) => () => RowModel<TFeatures, TData>;Defined in: features/column-filtering/createFilteredRowModel.ts:28
Creates a memoized filtered 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 filter functions with the filterFns slot on the features option: tableFeatures({ columnFilteringFeature, filteredRowModel: createFilteredRowModel(), filterFns }).
TFeatures extends TableFeatures
TData extends RowData = any
(table): () => RowModel<TFeatures, TData>;Table\<`TFeatures`, `TData`\>
(): RowModel<TFeatures, TData>;RowModel\<`TFeatures`, `TData`\>