Skip to content

Commit

Permalink
fix: api output type
Browse files Browse the repository at this point in the history
  • Loading branch information
ZigTag committed Nov 13, 2024
1 parent dc1842d commit 68b9e67
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/js/types/airport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion src/js/types/waypoint.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Coordinates } from "./math"
import { Coordinates, Degrees } from "./math"

export interface Waypoint {
area_code: string
Expand All @@ -10,4 +10,5 @@ export interface Waypoint {
ident: string
name: string
location: Coordinates
magnetic_variation?: Degrees
}

0 comments on commit 68b9e67

Please sign in to comment.