Data for a cell in a table.

interface CellData {
    formatted?: string;
    raw:
        | string
        | number
        | boolean
        | Date;
}

Properties

Properties

formatted?: string

The formatted value of the cell.

raw:
    | string
    | number
    | boolean
    | Date

The raw value of the cell.