import { SucceedNow } from "@effect/core/stream/Channel/definition/primitives" /** * @tsplus static effect/core/stream/Channel.Ops succeed */ export function succeed( result: OutDone ): Channel { return new SucceedNow(result) }