import { Channel } from "@effect/core/stream/Channel/definition/base"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Pipes all values from this stream through the provided channel, passing * through any error emitted by this stream unchanged. * @tsplus static effect/core/stream/Stream.Aspects pipeThroughChannelFail * @tsplus pipeable effect/core/stream/Stream pipeThroughChannelFail * @tsplus location "@effect/core/stream/Stream/operations/pipeThroughChannelOrFail" */ export declare function pipeThroughChannelFail(channel: Channel, unknown, E2, Chunk, unknown>): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=pipeThroughChannelOrFail.d.ts.map