import type { EIO } from "../../Task/model"; import type { XPromise } from "../model"; /** * Completes the promise with the result of the specified effect. If the * promise has already been completed, the method will produce false. * * Note that `Promise.completeWith` will be much faster, so consider using * that if you do not need to memoize the result of the specified effect. */ export declare const complete: ( e: EIO ) => (promise: XPromise) => import("../../Task/model").Task; //# sourceMappingURL=complete.d.ts.map