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

Indexable

[key: string]: string | number | boolean | undefined 任意の追加のカスタムオプション

プロパティ

country_code
string
国コード (例: ‘US’、‘GB’)
phone_prefix
string
電話番号のプレフィックス (例: ‘+1’、‘+44’)