import { Effect } from "@effect/core/io/Effect/definition"; import { Sink } from "@effect/core/stream/Sink/definition/base"; import { Channel } from "@effect/core/stream/Channel/definition/base"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * A sink that executes the provided effectful function for every element fed * to it. * @tsplus static effect/core/stream/Sink.Ops forEach * @tsplus location "@effect/core/stream/Sink/operations/forEach" */ export declare function forEach(f: (input: In) => Effect): Sink; //# sourceMappingURL=forEach.d.ts.map