/** * Returns `true` if the value is "Promise like". In JavaScript any object with * a `then` method is treated like a Promise when being resolved or awaited. * * @example * * const promiseLike = { * then() { * console.log("really?"); * } * } * * isPromise(promiseLike); // true * * await promiseLike; * "really?" */ export declare function isPromise(value: unknown): value is PromiseLike; //# sourceMappingURL=JsPromise.d.ts.map