import { Observable } from '../Observable'; import { Scheduler } from '../Scheduler'; import { Operator } from '../Operator'; import { Subscriber } from '../Subscriber'; import { Subscription } from '../Subscription'; import { OuterSubscriber } from '../OuterSubscriber'; import { InnerSubscriber } from '../InnerSubscriber'; /** * Returns an Observable where for each item in the source Observable, the supplied function is applied to each item, * resulting in a new value to then be applied again with the function. * @param {function} project the function for projecting the next emitted item of the Observable. * @param {number} [concurrent] the max number of observables that can be created concurrently. defaults to infinity. * @param {Scheduler} [scheduler] The Scheduler to use for managing the expansions. * @returns {Observable} an Observable containing the expansions of the source Observable. */ export declare function expand(project: (value: T, index: number) => Observable, concurrent?: number, scheduler?: Scheduler): Observable; export declare class ExpandOperator implements Operator { private project; private concurrent; private scheduler; constructor(project: (value: T, index: number) => Observable, concurrent: number, scheduler: Scheduler); call(subscriber: Subscriber): Subscriber; } export declare class ExpandSubscriber extends OuterSubscriber { private project; private concurrent; private scheduler; private index; private active; private hasCompleted; private buffer; constructor(destination: Subscriber, project: (value: T, index: number) => Observable, concurrent: number, scheduler: Scheduler); private static dispatch({subscriber, result, value, index}); protected _next(value: any): void; private subscribeToProjection(result, value, index); protected _complete(): void; notifyNext(outerValue: T, innerValue: R, outerIndex: number, innerIndex: number, innerSub: InnerSubscriber): void; notifyComplete(innerSub: Subscription): void; }