/** * Constructs a layer that fails with the specified error. * * @tsplus static effect/core/io/Layer.Ops fail */ export function fail(e: LazyArg): Layer { return Layer.failCause(Cause.fail(e())) }