Interface CountryCallingCodeInfo

Country calling code information.

interface CountryCallingCodeInfo {
    code: string;
    country: string;
    iso2: string;
    iso3: string;
    maxLength: number;
    minLength: number;
}

Properties

code: string
country: string
iso2: string
iso3: string
maxLength: number
minLength: number