Skip to main content
Example
export interface PhonePrefix {
  /** The country name */
  country: string;
  /** The country code (e.g. 'US', 'GB') */
  country_code: string;
  /** The phone prefix (e.g. '+1', '+44') */
  phone_prefix: string;
}

Properties

country
string
The country name

country_code

country_code: string
The country code (e.g. ‘US’, ‘GB’)

phone_prefix

phone_prefix: string
The phone prefix (e.g. ‘+1’, ‘+44’)