source: trip-planner-front/node_modules/rxjs/internal/operators/expand.d.ts@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.5 KB
Line 
1import { Operator } from '../Operator';
2import { Subscriber } from '../Subscriber';
3import { MonoTypeOperatorFunction, OperatorFunction, ObservableInput, SchedulerLike } from '../types';
4import { SimpleOuterSubscriber } from '../innerSubscribe';
5export declare function expand<T, R>(project: (value: T, index: number) => ObservableInput<R>, concurrent?: number, scheduler?: SchedulerLike): OperatorFunction<T, R>;
6export declare function expand<T>(project: (value: T, index: number) => ObservableInput<T>, concurrent?: number, scheduler?: SchedulerLike): MonoTypeOperatorFunction<T>;
7export declare class ExpandOperator<T, R> implements Operator<T, R> {
8 private project;
9 private concurrent;
10 private scheduler?;
11 constructor(project: (value: T, index: number) => ObservableInput<R>, concurrent: number, scheduler?: SchedulerLike);
12 call(subscriber: Subscriber<R>, source: any): any;
13}
14/**
15 * We need this JSDoc comment for affecting ESDoc.
16 * @ignore
17 * @extends {Ignored}
18 */
19export declare class ExpandSubscriber<T, R> extends SimpleOuterSubscriber<T, R> {
20 private project;
21 private concurrent;
22 private scheduler?;
23 private index;
24 private active;
25 private hasCompleted;
26 private buffer?;
27 constructor(destination: Subscriber<R>, project: (value: T, index: number) => ObservableInput<R>, concurrent: number, scheduler?: SchedulerLike);
28 private static dispatch;
29 protected _next(value: any): void;
30 private subscribeToProjection;
31 protected _complete(): void;
32 notifyNext(innerValue: R): void;
33 notifyComplete(): void;
34}
Note: See TracBrowser for help on using the repository browser.