Representation of an individual table cell.

interface CellData {
    highlighted: boolean;
    value: string;
}

Properties

Properties

highlighted: boolean

Indicates if a cell's value is currently highlighted.

value: string

The cell value.