Skip to content

Commit 68b9e67

Browse files
committed
fix: api output type
1 parent dc1842d commit 68b9e67

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/js/types/airport.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ export interface Airport {
2121
continent?: string
2222
country?: string
2323
country_3letter?: string
24+
state?: string
25+
state_2letter?: string
2426
location: Coordinates
2527
name: string
2628
ifr_capability: IfrCapability

src/js/types/waypoint.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Coordinates } from "./math"
1+
import { Coordinates, Degrees } from "./math"
22

33
export interface Waypoint {
44
area_code: string
@@ -10,4 +10,5 @@ export interface Waypoint {
1010
ident: string
1111
name: string
1212
location: Coordinates
13+
magnetic_variation?: Degrees
1314
}

0 commit comments

Comments
 (0)