type AppCellContext<TFeatures, TData, TValue, TCellComponents> = object;type AppCellContext<TFeatures, TData, TValue, TCellComponents> = object;Defined in: helpers/createTableHook.ts:47
Enhanced CellContext with pre-bound cell components. The cell property includes the registered cellComponents.
TFeatures extends TableFeatures
TData extends RowData
TValue extends CellData
TCellComponents extends Record<string, RenderableComponent>
cell: Cell<TFeatures, TData, TValue> & TCellComponents & object;cell: Cell<TFeatures, TData, TValue> & TCellComponents & object;Defined in: helpers/createTableHook.ts:53
FlexRender: () => unknown;FlexRender: () => unknown;unknown
column: Column<TFeatures, TData, TValue>;column: Column<TFeatures, TData, TValue>;Defined in: helpers/createTableHook.ts:55
getValue: CellContext<TFeatures, TData, TValue>["getValue"];getValue: CellContext<TFeatures, TData, TValue>["getValue"];Defined in: helpers/createTableHook.ts:56
renderValue: CellContext<TFeatures, TData, TValue>["renderValue"];renderValue: CellContext<TFeatures, TData, TValue>["renderValue"];Defined in: helpers/createTableHook.ts:57
row: Row<TFeatures, TData>;row: Row<TFeatures, TData>;Defined in: helpers/createTableHook.ts:58
table: Table<TFeatures, TData>;table: Table<TFeatures, TData>;Defined in: helpers/createTableHook.ts:59