@ipregistry/client
    Preparing search index...

    Interface Country

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

    Properties

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