aboutsummaryrefslogtreecommitdiff
path: root/src/models/FetchedCountry.model.ts
blob: af802817ed168f022505188af919cea37b0a134b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export interface FetchedCountry {
  country: string;
  latlng: string;
  flag: string;
  languages: string;
  capital: string;
  capitalLatLng: string;
  region: string;
  subregion: string;
  population: string;
  currencies: string;
  timezones: string;
}