Docs
CodeRabbit
Cloudflare
AG Grid
SerpAPI
Netlify
Neon
WorkOS
Clerk
Convex
Electric
PowerSync
Sentry
Railway
Prisma
Strapi
Unkey
CodeRabbit
Cloudflare
AG Grid
SerpAPI
Netlify
Neon
WorkOS
Clerk
Convex
Electric
PowerSync
Sentry
Railway
Prisma
Strapi
Unkey
Table API Reference
Column API Reference
Row API Reference
Cell API Reference
Header API Reference
Features API Reference
Legacy API Reference
Enterprise
Table API Reference

Table_CoreProperties

Interface: Table_CoreProperties<TFeatures, TData>

Defined in: core/table/coreTablesFeature.types.ts:61

Extended by

Type Parameters

TFeatures

TFeatures extends TableFeatures

TData

TData extends RowData

Properties

_cellPrototype?

ts
optional _cellPrototype: object;

Defined in: core/table/coreTablesFeature.types.ts:72

Prototype cache for Cell objects - shared by all cells in this table


_columnPrototype?

ts
optional _columnPrototype: object;

Defined in: core/table/coreTablesFeature.types.ts:76

Prototype cache for Column objects - shared by all columns in this table


_features

ts
_features: Partial<CoreFeatures> & TFeatures;

Defined in: core/table/coreTablesFeature.types.ts:68

The features that are enabled for the table.


_headerPrototype?

ts
optional _headerPrototype: object;

Defined in: core/table/coreTablesFeature.types.ts:80

Prototype cache for Header objects - shared by all headers in this table


_rowModelFns

ts
_rowModelFns: RowModelFns<TFeatures, TData>;

Defined in: core/table/coreTablesFeature.types.ts:84

The row model processing functions that are used to process the data by features.


_rowModels

ts
_rowModels: CachedRowModels<TFeatures, TData>;

Defined in: core/table/coreTablesFeature.types.ts:88

The row models that are enabled for the table.


_rowPrototype?

ts
optional _rowPrototype: object;

Defined in: core/table/coreTablesFeature.types.ts:92

Prototype cache for Row objects - shared by all rows in this table


baseStore

ts
baseStore: Store<TableState<TFeatures>>;

Defined in: core/table/coreTablesFeature.types.ts:96

The base store for the table. This can be used to write to the table state.


initialState

ts
initialState: TableState<TFeatures>;

Defined in: core/table/coreTablesFeature.types.ts:100

This is the resolved initial state of the table.


options

ts
options: TableOptions<TFeatures, TData>;

Defined in: core/table/coreTablesFeature.types.ts:104

A read-only reference to the table's current options.


store

ts
store: ReadonlyStore<TableState<TFeatures>>;

Defined in: core/table/coreTablesFeature.types.ts:108

Where the table state is stored.