aboutsummaryrefslogtreecommitdiff
path: root/src/models/FetchedCountry.model.ts
blob: 0dd783d9ed98c3be8d6c23e8e8dd7020c4355d35 (plain)
1
2
3
4
5
6
7
8
9
export interface FetchedCountry {
  country: string;
  flag: string;
  languages: string;
  capital: string;
  region: string;
  population: string;
  currencies: string;
}