UNPKG

385 BTypeScriptView Raw
1import { AsyncIterableX } from '../../asynciterable/asynciterablex';
2import { PartialAsyncObserver } from '../../observer';
3/**
4 * @ignore
5 */
6export declare function tapProto<T>(this: AsyncIterableX<T>, observer: PartialAsyncObserver<T>): AsyncIterableX<T>;
7declare module '../../asynciterable/asynciterablex' {
8 interface AsyncIterableX<T> {
9 tap: typeof tapProto;
10 }
11}