@qite/tide-client
Version:
Frontend client for Tide
18 lines (17 loc) • 375 B
TypeScript
export interface Airport {
iata: string;
name: string;
isDepartureLocation: boolean;
localizations: AirportLocalized[];
countryId?: number;
location: string;
locationLocalizations: LocationLocalized[];
}
export interface AirportLocalized {
languageCode: string;
name: string;
}
export interface LocationLocalized {
languageCode: string;
name: string;
}