You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
537 B
17 lines
537 B
import { Subscriber } from './Subscriber'; |
|
import { OuterSubscriber } from './OuterSubscriber'; |
|
/** |
|
* We need this JSDoc comment for affecting ESDoc. |
|
* @ignore |
|
* @extends {Ignored} |
|
*/ |
|
export declare class InnerSubscriber<T, R> extends Subscriber<R> { |
|
private parent; |
|
private outerValue; |
|
private outerIndex; |
|
private index; |
|
constructor(parent: OuterSubscriber<T, R>, outerValue: T, outerIndex: number); |
|
protected _next(value: R): void; |
|
protected _error(error: any): void; |
|
protected _complete(): void; |
|
}
|
|
|