Type alias ComplexSubscriber<T>

ComplexSubscriber<T>: {
    complete?: SubscriberCompleteFunction<T>;
    error?: SubscriberErrorFunction;
    next?: SubscriberFunction<T>;
}

Subscribers that define multiple handler methods.

Type Parameters

  • T

Type declaration