Type alias CellObserver<T>

CellObserver<T>: ((newValue) => void)

Cell observer function type. Compatible with Observer.

Type Parameters

  • T

Type declaration

    • (newValue): void
    • Parameters

      • newValue: T

        The new value of the cell.

      Returns void