index.d.ts 108 B

12
  1. declare function isPromise<T, S>(obj: PromiseLike<T> | S): obj is PromiseLike<T>;
  2. export default isPromise;