source: trip-planner-front/node_modules/rxjs/internal/InnerSubscriber.d.ts@ e29cc2e

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

initial commit

  • Property mode set to 100644
File size: 532 bytes
Line 
1import { Subscriber } from './Subscriber';
2import { OuterSubscriber } from './OuterSubscriber';
3/**
4 * We need this JSDoc comment for affecting ESDoc.
5 * @ignore
6 * @extends {Ignored}
7 */
8export declare class InnerSubscriber<T, R> extends Subscriber<R> {
9 private parent;
10 outerValue: T;
11 outerIndex: number;
12 private index;
13 constructor(parent: OuterSubscriber<T, R>, outerValue: T, outerIndex: number);
14 protected _next(value: R): void;
15 protected _error(error: any): void;
16 protected _complete(): void;
17}
Note: See TracBrowser for help on using the repository browser.