UNPKG
node-updown
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
0.2.2
0.2.1
0.2.0
0.1.2
0.1.1
0.1.0
Transparent Node.JS wrapper for the updown.io API
github.com/woubuc/node-updown
woubuc/node-updown
node-updown
/
lib
/
types
/
Node.d.ts
12 lines
(11 loc)
•
267 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
CheckLocation
}
from
'./Check'
;
export
declare
type
Nodes
=
Record
<
CheckLocation
,
Node
>;
export
interface
Node
{
ip
:
string
;
ip6
:
string
;
city
:
string
;
country
:
string
;
country_code
:
string
;
lat
:
number
;
lng
:
number
; }