interface Observer<T> {
    complete?(): void;
    error?(errorValue: any): void;
    next?(value: T): void;
    start?(subscription: SubscriptionI): any;
}

Type Parameters

  • T

Methods

MMNEPVFCICPMFPCPTTAAATR