Skip to main content
Options for selecting a country code
Example
export interface SelectCountryCodeOptions {
  /** The country code (e.g. 'US', 'GB') */
  country_code: string;
  /** The phone prefix (e.g. '+1', '+44') */
  phone_prefix: string;
  /** Any additional custom options */
  [key: string]: string | number | boolean | undefined;
}

Indexable

[key: string]: string | number | boolean | undefined Any additional custom options

Properties

country_code
string
The country code (e.g. ‘US’, ‘GB’)
phone_prefix
string
The phone prefix (e.g. ‘+1’, ‘+44’)