UNPKG

country-currency-phone

Version:

Provides countries, currencies and phone codes base on ISO names, symbols and codes.

14 lines (13 loc) 223 B
export interface ICountryCurrencyPhone { country: { names: string[]; alpha2: string; alpha3: string; }; currency: { name: string; alpha3: string; symbol: string; }; phoneCodes: string[]; }