aboutsummaryrefslogtreecommitdiff
path: root/src/models/fetched-country.model.ts
blob: a53482eb4f3409c39b36d7ea89da5d946f3497c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
  tld: string;
}