frontend/.pnpm-store/v3/files/0c/07027bbd4397bd01032ec00f9782405ad436d4f24ffdfc2f0ab26096653832124571c8dcccdc26ece9285ef86c3cc0564d85cc26d1767190b6a6632e0778bf

8 lines
216 B
Plaintext

/**
* Tries to resolve the hostname. Returns true if succeeds.
*
* @param {String} host is the hostname from the URL.
* @return {Boolean}
*/
export default function isResolvable(host: string): Promise<boolean>;