React Executor - v0.0.24
    Preparing search index...

    Interface Observable<T>

    The observable that allows to subscribe to a stream of values.

    interface Observable<T> {
        subscribe(listener: (value: T) => void): () => void;
    }

    Type Parameters

    • T

      The value pushed by the observable.

    Hierarchy (View Summary)

    Implemented by

    Index

    Methods

    Methods

    • Subscribes the listener to changes of the observed value.

      Parameters

      • listener: (value: T) => void

        The listener to subscribe.

      Returns () => void