import { Cause } from "@effect/core/io/Cause/definition"; import { Effect } from "@effect/core/io/Effect/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Returns a stream that effectfully "peeks" at the cause of failure of the * stream. * @tsplus static effect/core/stream/Stream.Aspects tapErrorCause * @tsplus pipeable effect/core/stream/Stream tapErrorCause * @tsplus location "@effect/core/stream/Stream/operations/tapErrorCause" */ export declare function tapErrorCause(f: (cause: Cause) => Effect): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=tapErrorCause.d.ts.map