import { Effect } from "@effect/core/io/Effect/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Adds an effect to consumption of every element of the stream. * @tsplus static effect/core/stream/Stream.Aspects tap * @tsplus pipeable effect/core/stream/Stream tap * @tsplus location "@effect/core/stream/Stream/operations/tap" */ export declare function tap(f: (a: A) => Effect): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=tap.d.ts.map