import { Enqueue } from "@effect/core/io/Queue/definition/common"; import { Sink } from "@effect/core/stream/Sink/definition/base"; /** * Create a sink which enqueues each element into the specified queue. The * queue will be shutdown once the stream is closed. * @tsplus static effect/core/stream/Sink.Ops fromQueueWithShutdown * @tsplus location "@effect/core/stream/Sink/operations/fromQueueWithShutdown" */ export declare function fromQueueWithShutdown(queue: Enqueue): Sink; //# sourceMappingURL=fromQueueWithShutdown.d.ts.map