Socialify

Folder ..

Viewing FetchedCountry.model.ts
14 lines (14 loc) • 273.0 B

 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;
}