UNPKG

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