function cell_getContext<TFeatures, TData, TValue>(cell): object;
Defined in: core/cells/coreCellsFeature.utils.ts:21
TFeatures extends TableFeatures
TData extends RowData
TValue extends unknown = unknown
Cell<TFeatures, TData, TValue>
object
cell: Cell<TFeatures, TData, TValue>;
column: Column<TFeatures, TData, TValue> = cell.column;
getValue: () => NoInfer<TValue>;
NoInfer<TValue>
renderValue: () => NoInfer<TValue | null>;
NoInfer<TValue | null>
row: Row<TFeatures, TData> = cell.row;
table: Table_Internal<TFeatures, TData> = cell.table;