Interface SelectCountryCodeOptions

Options for selecting a country code

interface SelectCountryCodeOptions {
    country_code: string;
    phone_prefix: string;
    [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')