isResolvable.d.ts 258 B

12345678
  1. /**
  2. * Tries to resolve the hostname. Returns true if succeeds.
  3. *
  4. * @param {String} host is the hostname from the URL.
  5. * @return {Boolean}
  6. */
  7. export default function isResolvable(host: string): Promise<boolean>;
  8. //# sourceMappingURL=isResolvable.d.ts.map