Docs
Cloudflare
Railway
CodeRabbit
WorkOS
AG Grid
SerpAPI
Netlify
OpenRouter
Clerk
Unkey
Prisma
Electric
Sentry
Cloudflare
Railway
CodeRabbit
WorkOS
AG Grid
SerpAPI
Netlify
OpenRouter
Clerk
Unkey
Prisma
Electric
Sentry
Table API Reference
Column API Reference
Row API Reference
Cell API Reference
Header API Reference
Features API Reference
Static Functions API Reference
Legacy API Reference
Row API Reference

CachedRowModels

Type Alias: CachedRowModels<TFeatures, TData>

ts
type CachedRowModels<TFeatures, TData> = object & UnionToIntersection<
  | "columnFacetingFeature" extends keyof TFeatures ? CachedRowModel_Faceted<TFeatures, TData> : never
  | "columnFilteringFeature" extends keyof TFeatures ? CachedRowModel_Filtered<TFeatures, TData> : never
  | "rowExpandingFeature" extends keyof TFeatures ? CachedRowModel_Expanded<TFeatures, TData> : never
  | "columnGroupingFeature" extends keyof TFeatures ? CachedRowModel_Grouped<TFeatures, TData> : never
  | "rowPaginationFeature" extends keyof TFeatures ? CachedRowModel_Paginated<TFeatures, TData> : never
| "rowSortingFeature" extends keyof TFeatures ? CachedRowModel_Sorted<TFeatures, TData> : never> & ExtractFeatureTypes<"CachedRowModel", TFeatures> & CachedRowModels_Plugins<TFeatures, TData>;
type CachedRowModels<TFeatures, TData> = object & UnionToIntersection<
  | "columnFacetingFeature" extends keyof TFeatures ? CachedRowModel_Faceted<TFeatures, TData> : never
  | "columnFilteringFeature" extends keyof TFeatures ? CachedRowModel_Filtered<TFeatures, TData> : never
  | "rowExpandingFeature" extends keyof TFeatures ? CachedRowModel_Expanded<TFeatures, TData> : never
  | "columnGroupingFeature" extends keyof TFeatures ? CachedRowModel_Grouped<TFeatures, TData> : never
  | "rowPaginationFeature" extends keyof TFeatures ? CachedRowModel_Paginated<TFeatures, TData> : never
| "rowSortingFeature" extends keyof TFeatures ? CachedRowModel_Sorted<TFeatures, TData> : never> & ExtractFeatureTypes<"CachedRowModel", TFeatures> & CachedRowModels_Plugins<TFeatures, TData>;

Defined in: types/RowModel.ts:92

Type Declaration

CachedRowModel_Core()

ts
CachedRowModel_Core: () => RowModel<TFeatures, TData>;
CachedRowModel_Core: () => RowModel<TFeatures, TData>;

Returns

RowModel<TFeatures, TData>

Type Parameters

TFeatures

TFeatures extends TableFeatures

TData

TData extends RowData