Skip to main content
Example
export interface PhonePrefix {
  /** 国名 */
  country: string;
  /** 国コード(例: 'US', 'GB') */
  country_code: string;
  /** 電話番号プレフィックス(例: '+1', '+44') */
  phone_prefix: string;
}

プロパティ

country
string
国名

country_code

country_code: string
国コード (例: ‘US’、‘GB’)

phone_prefix

phone_prefix: string
電話番号プレフィックス (例: ‘+1’、‘+44’)