frontend/.pnpm-store/v3/files/fc/cd7f92846d1cf536f38039a18e243f004d3ca7911d0dac60f6a8940673bef27dbfea056dcbc0124c9def5dd3d88e1d105c9391f27b91c8bd5ad0d9642fc153

16 lines
387 B
Plaintext

/**
* Returns the IP address of the host that the Navigator is running on, as
* a string in the dot-separated integer format.
*
* Example:
*
* ``` js
* myIpAddress()
* // would return the string "198.95.249.79" if you were running the
* // Navigator on that host.
* ```
*
* @return {String} external IP address
*/
export default function myIpAddress(): Promise<string>;