国コード選択用のオプション
export interface SelectCountryCodeOptions {
/** 国コード(例: 'US', 'GB') */
country_code: string;
/** 電話番号のプレフィックス(例: '+1', '+44') */
phone_prefix: string;
/** 追加のカスタムオプション */
[key: string]: string | number | boolean | undefined;
}
[key: string]: string | number | boolean | undefined
任意の追加のカスタムオプション
電話番号のプレフィックス (例: ‘+1’、‘+44’)