myIpAddress.d.ts 428 B

12345678910111213141516
  1. /**
  2. * Returns the IP address of the host that the Navigator is running on, as
  3. * a string in the dot-separated integer format.
  4. *
  5. * Example:
  6. *
  7. * ``` js
  8. * myIpAddress()
  9. * // would return the string "198.95.249.79" if you were running the
  10. * // Navigator on that host.
  11. * ```
  12. *
  13. * @return {String} external IP address
  14. */
  15. export default function myIpAddress(): Promise<string>;
  16. //# sourceMappingURL=myIpAddress.d.ts.map