Options for selecting a country code
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
The country code (e.g. ‘US’, ‘GB’)
The phone prefix (e.g. ‘+1’, ‘+44’)