Interface Observer<T>

interface Observer<T> {
    complete(): void;
    error(reason: string | Error): void;
    next(value: T): void;
}

Type Parameters

  • T = any

Methods

""