Defined in: core/table/coreTablesFeature.types.ts:61
TFeatures extends TableFeatures
TData extends RowData
optional _cellPrototype: object;
Defined in: core/table/coreTablesFeature.types.ts:72
Prototype cache for Cell objects - shared by all cells in this table
optional _columnPrototype: object;
Defined in: core/table/coreTablesFeature.types.ts:76
Prototype cache for Column objects - shared by all columns in this table
_features: Partial<CoreFeatures> & TFeatures;
Defined in: core/table/coreTablesFeature.types.ts:68
The features that are enabled for the table.
optional _headerPrototype: object;
Defined in: core/table/coreTablesFeature.types.ts:80
Prototype cache for Header objects - shared by all headers in this table
_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: CachedRowModels<TFeatures, TData>;
Defined in: core/table/coreTablesFeature.types.ts:88
The row models that are enabled for the table.
optional _rowPrototype: object;
Defined in: core/table/coreTablesFeature.types.ts:92
Prototype cache for Row objects - shared by all rows in this table
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: TableState<TFeatures>;
Defined in: core/table/coreTablesFeature.types.ts:100
This is the resolved initial state of the table.
options: TableOptions<TFeatures, TData>;
Defined in: core/table/coreTablesFeature.types.ts:104
A read-only reference to the table's current options.
store: ReadonlyStore<TableState<TFeatures>>;
Defined in: core/table/coreTablesFeature.types.ts:108
Where the table state is stored.