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

    Interface Observer<T>

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

    Type Parameters

    • T = any
    Index