cytoplasmic
    Preparing search index...

    Type Alias CellValue<T>

    CellValue: T extends Cell<infer TValue> ? TValue : never

    A utility type that given a cell type Cell<TValue> returns TValue.

    Type Parameters

    • T

      The cell type.

    type A = CellValue<Cell<number>>;
    // A = number