import type { Promise } from "./promise.js"; /** * Fails the promise with the specified error, which will be propagated to all * fibers waiting on the value of the promise. */ export declare function fail_(promise: Promise, e: E): import("../Effect/effect.js").UIO; /** * Fails the promise with the specified error, which will be propagated to all * fibers waiting on the value of the promise. */ export declare function fail(e: E): (promise: Promise) => import("../Effect/effect.js").UIO; //# sourceMappingURL=fail.d.ts.map