Last change
on this file since 571e0df was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
532 bytes
|
Line | |
---|
1 | import { Subscriber } from './Subscriber';
|
---|
2 | import { OuterSubscriber } from './OuterSubscriber';
|
---|
3 | /**
|
---|
4 | * We need this JSDoc comment for affecting ESDoc.
|
---|
5 | * @ignore
|
---|
6 | * @extends {Ignored}
|
---|
7 | */
|
---|
8 | export 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.