function cell_getValue<TFeatures, TData, TValue>(cell): TValue;function cell_getValue<TFeatures, TData, TValue>(cell): TValue;Defined in: core/cells/coreCellsFeature.utils.ts:16
Reads this cell's accessor value from its owning row and column.
This is the standalone implementation behind cell.getValue(), useful when importing static APIs instead of calling methods from the cell prototype.
TFeatures extends TableFeatures
TData extends RowData
TValue extends unknown = unknown
Cell<TFeatures, TData, TValue>
TValue
const value = cell_getValue(cell)const value = cell_getValue(cell)