UNPKG
@typed/is-promise
Version:
latest (1.0.0)
1.0.0
Check if a value is a Promise
github.com/tylors/typed-is-promise
tylors/typed-is-promise
@typed/is-promise
/
lib
/
index.d.ts
3 lines
(2 loc)
•
125 B
TypeScript
View Raw
1
2
3
export
declare
function
isPromise<T>(
p
:
any
): p is
Promise
<T>;
export
declare
function
isPromise
(
p
:
any
): p is
Promise
<
any
>;