@jiway/firestorm-core - v1.1.1
    Preparing search index...

    Type Alias SubscribeFunction<T>

    SubscribeFunction: (
        this: Observable<T>,
        subscriber: Subscriber<T>,
    ) => TeardownLogic

    Type alias for observable's first parameter

    Type Parameters

    • T

      Type of the notification

    Type Declaration

      • (this: Observable<T>, subscriber: Subscriber<T>): TeardownLogic
      • Parameters

        • this: Observable<T>

          The observable upon which you suscribe

        • subscriber: Subscriber<T>

          The subscriber of the observable

        Returns TeardownLogic