mirror of https://github.com/lukechilds/docs.git
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.
13 lines
509 B
13 lines
509 B
6 years ago
|
import { Subscriber } from './Subscriber';
|
||
|
import { InnerSubscriber } from './InnerSubscriber';
|
||
|
/**
|
||
|
* We need this JSDoc comment for affecting ESDoc.
|
||
|
* @ignore
|
||
|
* @extends {Ignored}
|
||
|
*/
|
||
|
export declare class OuterSubscriber<T, R> extends Subscriber<T> {
|
||
|
notifyNext(outerValue: T, innerValue: R, outerIndex: number, innerIndex: number, innerSub: InnerSubscriber<T, R>): void;
|
||
|
notifyError(error: any, innerSub: InnerSubscriber<T, R>): void;
|
||
|
notifyComplete(innerSub: InnerSubscriber<T, R>): void;
|
||
|
}
|