Interface Country

interface Country {
    area: number;
    borders: string[];
    calling_code: null | string;
    capital: null | string;
    code: null | string;
    flag: Flag;
    languages: Language[];
    name: null | string;
    population: number;
    population_density: number;
    tld: null | string;
}

Properties

area: number
borders: string[]
calling_code: null | string
capital: null | string
code: null | string
flag: Flag
languages: Language[]
name: null | string
population: number
population_density: number
tld: null | string