Type that represents an error value stored in a cell

Defined as a discriminated union so that additional cell value types can be added in future.

interface CellError {
    type: "CellError";
    value: CellErrorValue;
}

Properties

Properties

type: "CellError"

Discriminated union tag