import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; import { Effect } from "@effect/core/io/Effect/definition"; import { Take } from "@effect/core/stream/Take/definition"; /** * Returns an effect that effectfully "peeks" at the success of this take. * @tsplus static effect/core/stream/Take.Aspects tap * @tsplus pipeable effect/core/stream/Take tap * @tsplus location "@effect/core/stream/Take/operations/tap" */ export declare function tap(f: (chunk: Chunk) => Effect): (self: Take) => Effect; //# sourceMappingURL=tap.d.ts.map