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.
12 lines
509 B
12 lines
509 B
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; |
|
}
|
|
|