Started a flight view

This commit is contained in:
2026-04-07 21:31:36 +10:00
parent 79469c02cf
commit 43f5c8ac3e
9 changed files with 384 additions and 209 deletions
+20
View File
@@ -40,6 +40,23 @@ export interface Airport {
timezone: string
}
export type Continent = {
id: number
name: string
code: string
internal_name:string
}
export type Country = {
id: number
code: string
name: string
created_at: string | null
updated_at: string | null
continent_id: number
continent?: Continent
}
export interface Airline {
id: number
IATA_code: string | null
@@ -49,8 +66,11 @@ export interface Airline {
active: boolean
logo: string | null
country_id: number
country?: Country
}
export interface Aircraft {
id: number
designator: string