/** * Tap allows you to listen on values, without modifying them. * * @param fn - function to call for each value. */ export declare function opTapAsync(tapFn: (v: T) => void): (iter: AsyncIterable) => AsyncIterable; /** * Tap allows you to listen on values, without modifying them. * * @param fn - function to call for each value. */ export declare function opTapSync(tapFn: (v: T) => void): (iter: Iterable) => Iterable; /** * Tap allows you to listen on values, without modifying them. * * @param fn - function to call for each value. */ export declare const opTap: (fn: (v: T) => void) => import("../internalTypes").PipeFn; //# sourceMappingURL=tap.d.ts.map