A single spreadsheet cell at a fixed location.

Pairs a CellRef position with its current CellValue. Both fields are immutable — updates produce a new Cell rather than mutating in place.

interface Cell {
    ref: CellRef;
    value: CellValue;
}

Properties

Properties

ref: CellRef
value: CellValue