import { Cause } from "@effect/core/io/Cause/definition"; import { Channel } from "@effect/core/stream/Channel/definition/base"; /** * Fold the channel exposing success and full error cause. * @tsplus static effect/core/stream/Channel.Aspects foldCauseChannel * @tsplus pipeable effect/core/stream/Channel foldCauseChannel * @tsplus location "@effect/core/stream/Channel/operations/foldCauseChannel" */ export declare function foldCauseChannel(onErr: (c: Cause) => Channel, onSucc: (o: OutDone) => Channel): (self: import("../definition").Channel) => import("../definition").Channel; //# sourceMappingURL=foldCauseChannel.d.ts.map