import { FromEffect } from "@effect/core/stream/Channel/definition/primitives" /** * Use an effect to end a channel. * * @tsplus static effect/core/stream/Channel.Ops fromEffect */ export function fromEffect( effect: Effect ): Channel { return new FromEffect(effect) }