| 4 | // ICAO/IATA code (the server resolves it from the OurAirports dataset). |
| 5 | |
| 6 | export interface Runway { |
| 7 | leIdent: string; |
| 8 | heIdent: string; |
| 9 | le: [number, number]; // [lat, lon] |
| 10 | he: [number, number]; |
| 11 | widthFt: number; |
| 12 | } |
| 13 | |
| 14 | export interface Airport { |
| 15 | icao: string; |
nothing calls this directly
no outgoing calls
no test coverage detected