Skip to content

Commit

Permalink
1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gretzky committed Sep 9, 2020
1 parent 3f2c17c commit caf0c1b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "noaa-buoys",
"author": "gretzky",
"version": "1.3.1",
"version": "1.3.2",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/noaa-buoys.esm.js",
Expand Down
4 changes: 2 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export type Nullable<T> = T | null | undefined;

export interface Coords {
latitude: Nullable<number>;
longitude: Nullable<number>;
latitude: number;
longitude: number;
}

export enum StatesTerritoriesAbbrev {
Expand Down

0 comments on commit caf0c1b

Please sign in to comment.