Started a flight view
This commit is contained in:
Vendored
+20
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user