// Type definitions for airport-coordinates.json /** * code, name, lat, lon */ export type AeroflyAirportCoordinates = [string, string, number, number]; declare const AeroflyAirportCoordinatesList: AeroflyAirportCoordinates[]; export default AeroflyAirportCoordinatesList;