Interface Observer<A, B>

A suspended function closure interface. Intended to be compatible with prior art.

interface Observer<A, B> {
    next(value?): B;
}

Type Parameters

  • A
  • B = void

Implemented by

Methods

Methods

  • Parameters

    • Optional value: A

    Returns B

Generated using TypeDoc