import { StreamInternal } from "@effect/core/stream/Stream/operations/_internal/StreamInternal" /** * Creates a stream from a `Channel`. * * @tsplus static effect/core/stream/Stream.Ops fromChannel */ export function fromChannel( channel: Channel, unknown> ): Stream { return new StreamInternal(channel) }