import { Emit } from "@effect/core/stream/Channel/definition/primitives" /** * Writes an output to the channel. * * @tsplus static effect/core/stream/Channel.Ops write */ export function write( out: OutElem ): Channel { return new Emit(out) }