UNPKG
webdriverio-automation
Version:
latest (1.0.0)
1.0.0
WebdriverIO-Automation android ios project
webdriverio-automation
/
node_modules
/
got
/
dist
/
source
/
core
/
utils
/
dns-ip-version.d.ts
6 lines
(5 loc)
•
290 B
TypeScript
View Raw
1
2
3
4
5
6
export
declare
type
DnsLookupIpVersion
=
'auto'
|
'ipv4'
|
'ipv6'
;
declare
type
DnsIpFamily
=
0
|
4
|
6
;
export
declare
const
isDnsLookupIpVersion
:
(
value
:
any
) =>
boolean
;
export
declare
const
dnsLookupIpVersionToFamily
:
(
dnsLookupIpVersion
:
DnsLookupIpVersion
) =>
DnsIpFamily
;
export
{};