import { Fail } from "@effect/core/stream/Channel/definition/primitives" /** * Halt a channel with the specified cause. * * @tsplus static effect/core/stream/Channel.Ops failCauseSync */ export function failCauseSync( cause: LazyArg> ): Channel { return new Fail(cause) }