/** * Returns a stream that always fails with the specified `Cause`. * * @tsplus static effect/core/stream/Stream.Ops failCauseSync */ export function failCauseSync(cause: LazyArg>): Stream { return Stream.fromEffect(Effect.failCauseSync(cause)) }