@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
7 lines • 343 B
TypeScript
import type { Promise } from "./promise.js";
/**
* Checks for completion of this Promise. Produces true if this promise has
* already been completed with a value or an error and false otherwise.
*/
export declare function isDone<E, A>(promise: Promise<E, A>): import("../Effect/effect.js").UIO<boolean>;
//# sourceMappingURL=isDone.d.ts.map