UNPKG
us-zips
Version:
latest (2022.9.1)
2022.9.1
2021.11.4
2021.11.3
2021.11.2
2021.11.1
2021.11.0
5.1.0
5.0.0
4.0.2
4.0.1
4.0.0
3.0.1
3.0.0
2.0.2
2.0.1
2.0.0
1.0.0
A list of US ZIP codes and their geolocations
blakek/us-zips
us-zips
/
key-value.d.ts
8 lines
(5 loc)
•
209 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Geolocation
,
ZIPCode
}
from
"."
;
export
type
ZIPCodeRecord
= [
ZIPCode
,
Geolocation
];
export
type
ZIPCodeList
=
ZIPCodeRecord
[];
declare
const
defaultExport
:
ZIPCodeList
;
export
default
defaultExport;