Package: effect
Module: Channel
Creates a Channel that emits a single value and then ends.
Example (Creating channels that succeed)
import { Channel } from "effect"
const channel = Channel.succeed(42)
// Emits: 42
Signature
declare const succeed: <A>(value: A) => Channel<A>
Since v2.0.0