UncertainCompatible type

UncertainCompatible is a cell type that is compatible with other cell types that can be instances of various cell types (e.g. DataCell and TimeCell).

Definition

type UncertainCompatible<TCell extends Cell> = Uncertain<TCell> & {
    text: string;
    value: number;
}