We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc1842d commit 68b9e67Copy full SHA for 68b9e67
src/js/types/airport.ts
@@ -21,6 +21,8 @@ export interface Airport {
21
continent?: string
22
country?: string
23
country_3letter?: string
24
+ state?: string
25
+ state_2letter?: string
26
location: Coordinates
27
name: string
28
ifr_capability: IfrCapability
src/js/types/waypoint.ts
@@ -1,4 +1,4 @@
1
-import { Coordinates } from "./math"
+import { Coordinates, Degrees } from "./math"
2
3
export interface Waypoint {
4
area_code: string
@@ -10,4 +10,5 @@ export interface Waypoint {
10
ident: string
11
12
13
+ magnetic_variation?: Degrees
14
}
0 commit comments