@types/zipcodes
Advanced tools
Comparing version 6.1.0 to 8.0.0
@@ -1,2 +0,2 @@ | ||
// Type definitions for zipcodes 6.1 | ||
// Type definitions for zipcodes 8.0 | ||
// Project: https://github.com/davglass/zipcodes#readme | ||
@@ -17,3 +17,3 @@ // Definitions by: Brayden Lopez <https://github.com/headdetect>, Dobes Vandermeer <https://github.com/dobesv> | ||
export function lookup(zip: string|number): ZipCode | undefined; | ||
export function lookup(zip: string | number): ZipCode | undefined; | ||
@@ -24,5 +24,5 @@ export function lookupByName(city: string, state: string): ZipCode[]; | ||
export function distance(zipA: string|number, zipB: string|number): number | null; | ||
export function distance(zipA: string | number, zipB: string | number): number | null; | ||
export function radius(zip: string|number, miles: number, full: boolean): string[] | ZipCode[]; | ||
export function radius(zip: string | number, miles: number, full: boolean): string[] | ZipCode[]; | ||
@@ -34,1 +34,3 @@ export function toMiles(kilos: number): number; | ||
export function lookupByCoords(lat: number, lon: number): string | null; | ||
export function random(): ZipCode; |
{ | ||
"name": "@types/zipcodes", | ||
"version": "6.1.0", | ||
"version": "8.0.0", | ||
"description": "TypeScript definitions for zipcodes", | ||
@@ -19,10 +19,12 @@ "license": "MIT", | ||
"main": "", | ||
"types": "index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" | ||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", | ||
"directory": "types/zipcodes" | ||
}, | ||
"scripts": {}, | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "b1ad18b2fd9ea6461443c58cb0b83d2c99f25bdbcd192d5c403e1ed8038bc5ea", | ||
"typeScriptVersion": "2.0" | ||
"typesPublisherContentHash": "f8650fee28c2d343556e7be9c4cb5e0b371492b8b152ceb5cb622d59d5793d01", | ||
"typeScriptVersion": "2.8" | ||
} |
@@ -8,10 +8,10 @@ # Installation | ||
# Details | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/zipcodes | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/zipcodes. | ||
Additional Details | ||
* Last updated: Thu, 09 Aug 2018 01:47:21 GMT | ||
### Additional Details | ||
* Last updated: Tue, 31 Mar 2020 17:03:50 GMT | ||
* Dependencies: none | ||
* Global values: ZipCodes | ||
* Global values: `ZipCodes` | ||
# Credits | ||
These definitions were written by Brayden Lopez <https://github.com/headdetect>, Dobes Vandermeer <https://github.com/dobesv>. | ||
These definitions were written by [Brayden Lopez](https://github.com/headdetect), and [Dobes Vandermeer](https://github.com/dobesv). |
Sorry, the diff of this file is not supported yet
3639
22