UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

12 lines (11 loc) 335 B
import { IterableX } from '../../iterable/iterablex'; import { PartialObserver } from '../../observer'; /** * @ignore */ export declare function tapProto<T>(this: IterableX<T>, observer: PartialObserver<T>): IterableX<T>; declare module '../../iterable/iterablex' { interface IterableX<T> { tap: typeof tapProto; } }