Skip to main content
Example
export interface PhonePrefix {
  /** Le nom du pays */
  country: string;
  /** Le code de pays (p. ex. 'US', 'GB') */
  country_code: string;
  /** L'indicatif téléphonique (p. ex. '+1', '+44') */
  phone_prefix: string;
}

Propriétés

country
string
Nom du pays

country_code

country_code: string
Le code de pays (p. ex. « US », « GB »)

phone_prefix

phone_prefix: string
L’indicatif téléphonique (par exemple ‘+1’, ‘+44’)