| 25 | } |
| 26 | |
| 27 | interface Continent { |
| 28 | name: string; |
| 29 | summary: string; |
| 30 | surface?: number; |
| 31 | timezone: [number, number]; |
| 32 | demographics: { population: number; largestCities: string[] }; |
| 33 | languages: string[]; |
| 34 | countries: Country[]; |
| 35 | spanishName?: string; |
| 36 | } |
| 37 | |
| 38 | interface Country { |
| 39 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…