import { Stream } from "@effect/core/stream/Stream/definition"; import { Channel } from "@effect/core/stream/Channel/definition/base"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Allows a faster producer to progress independently of a slower consumer by * buffering chunks into an unbounded queue. * @tsplus getter effect/core/stream/Stream bufferUnbounded * @tsplus location "@effect/core/stream/Stream/operations/bufferUnbounded" */ export declare function bufferUnbounded(self: Stream): Stream; //# sourceMappingURL=bufferUnbounded.d.ts.map