Iterable Observer - v1.1.1
    Preparing search index...

    Interface Subscribable<T>

    interface Subscribable<T = any> {
        "[observable]"(): Subscribable<T>;
        subscribe(
            onNext: (value: T) => void,
            onError?: (reason: string | Error) => void,
            onComplete?: () => void,
        ): Subscription;
    }

    Type Parameters

    • T = any

    Implemented by

    Index
    • Parameters

      • onNext: (value: T) => void
      • OptionalonError: (reason: string | Error) => void
      • OptionalonComplete: () => void

      Returns Subscription