UNPKG

@nwpr/airport-codes

Version:

Airport codes (IATA) and information pulled from OpenFlights.org.

19 lines 420 B
interface Airport { id: number; name?: string; city?: string; country?: string; iata?: string; icao?: string; latitude?: number; longitude?: number; altitude?: number; timezone?: number; dst?: string; tz?: string; type?: string; source?: string; } declare const airports: Airport[]; export { airports as default, airports }; //# sourceMappingURL=index.esm.d.ts.map