Updated Map View
This commit is contained in:
Vendored
+15
@@ -27,9 +27,16 @@ export interface UserSettings {
|
||||
show_ai_tail_logos: boolean
|
||||
show_ai_livery_images: boolean
|
||||
departure_board_columns: string[]
|
||||
show_map_legend: boolean
|
||||
hide_impossible_achievements: boolean
|
||||
}
|
||||
|
||||
|
||||
export interface FollowerEntry {
|
||||
user: User
|
||||
verified: boolean
|
||||
}
|
||||
|
||||
export type SettingType = 'select' | 'text' | 'checkbox' | 'multiselect'
|
||||
export interface SettingOption {
|
||||
value: string
|
||||
@@ -260,6 +267,10 @@ export interface CrewType {
|
||||
internal_name: string
|
||||
}
|
||||
|
||||
export type RegionRange = "intraregional" | "interregional"
|
||||
export type FlightScope = 'domestic' | 'international'
|
||||
export type FlightRange = 'intracontinental' | 'intercontinental'
|
||||
|
||||
export interface Flight {
|
||||
id: number
|
||||
flight_number: string | null
|
||||
@@ -284,9 +295,13 @@ export interface Flight {
|
||||
duration_display: string
|
||||
duration: number
|
||||
distance: number
|
||||
scope: FlightScope
|
||||
range: FlightRange
|
||||
region_range: RegionRange
|
||||
livery_url?: string
|
||||
}
|
||||
|
||||
|
||||
export interface MissingLivery {
|
||||
airline_name: string;
|
||||
aircraft_display_name: string;
|
||||
|
||||
Reference in New Issue
Block a user