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