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