UNPKG
flotta-sdk
Version:
latest (0.1.0-development)
0.1.0-development
0.0.0-development
Flotta API wrapper
github.com/Arreeba/flotta-sdk
Arreeba/flotta-sdk
flotta-sdk
/
src
/
types
/
common.ts
15 lines
(12 loc)
•
229 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
type
Country
=
'IT'
|
'US'
;
export
type
Address
= {
country
:
Country
;
city
:
string
;
street
:
string
;
number
:
string
;
zipCode
:
string
; };
export
type
Geometry
= {
type
:
string
;
coordinates
:
Array
<
number
>; };