//#region src/is-promise.d.ts /** * Check if the provided value's type is a promise * * @param value - The value to type check * @returns An indicator specifying if the object provided is of type a promise */ declare const isPromise: (value: unknown) => value is Promise; /** * Check if the provided value's type is a promise-like * * @remarks * A promise-like is an object that has a `then` function * * @param value - The value to type check * @returns An indicator specifying if the object provided is of type a promise-like */ declare const isPromiseLike: (value: unknown) => value is PromiseLike; //#endregion export { isPromise, isPromiseLike }; //# sourceMappingURL=is-promise.d.mts.map