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