diff --git a/src/js/types/airport.ts b/src/js/types/airport.ts index fb3da0d5..cf9b1b92 100644 --- a/src/js/types/airport.ts +++ b/src/js/types/airport.ts @@ -21,6 +21,8 @@ export interface Airport { continent?: string country?: string country_3letter?: string + state?: string + state_2letter?: string location: Coordinates name: string ifr_capability: IfrCapability diff --git a/src/js/types/waypoint.ts b/src/js/types/waypoint.ts index d84cbe76..c44f8ef8 100644 --- a/src/js/types/waypoint.ts +++ b/src/js/types/waypoint.ts @@ -1,4 +1,4 @@ -import { Coordinates } from "./math" +import { Coordinates, Degrees } from "./math" export interface Waypoint { area_code: string @@ -10,4 +10,5 @@ export interface Waypoint { ident: string name: string location: Coordinates + magnetic_variation?: Degrees }