import { Stream } from "@effect/core/stream/Stream/definition"; import { Effect } from "@effect/core/io/Effect/definition"; import { Scope } from "@effect/core/io/Scope/definition"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; import { Dequeue } from "@effect/core/io/Queue/definition/common"; import { Take } from "@effect/core/stream/Take/definition"; /** * Converts the stream to a managed list of queues. Every value will be * replicated to every queue with the slowest queue being allowed to buffer * `maximumLag` chunks before the driver is back pressured. * * Queues can unsubscribe from upstream by shutting down. * @tsplus static effect/core/stream/Stream.Aspects broadcastedQueues * @tsplus pipeable effect/core/stream/Stream broadcastedQueues * @tsplus location "@effect/core/stream/Stream/operations/broadcastedQueues" */ export declare function broadcastedQueues(n: number, maximumLag: number): (self: import("../definition").Stream) => import("../../../io/Effect").Effect>>>; //# sourceMappingURL=broadcastedQueues.d.ts.map