UNPKG
countrycodejs
Version:
latest (0.3.2)
0.3.2
0.3.1
0.2.0
0.1.2
0.1.1
0.1.0
0.0.1
Country code validation
github.com/kHRISl33t/countrycodejs
kHRISl33t/countrycodejs
countrycodejs
/
lib
/
types.d.ts
10 lines
(9 loc)
•
210 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
declare
type
Maybe
<T> = T |
null
;
export
declare
type
Country
= {
name
:
string
;
dial_code
:
string
;
code
:
string
;
timezones
:
string
[];
latlng
:
number
[];
capital
:
Maybe
<
string
>; };