UNPKG

@ebay/ebayui-core

Version:

Collection of core eBay components; considered to be the building blocks for all composite structures, pages & apps.

14 lines (13 loc) 331 B
export interface CountryInterface { countryCode: string; callingCode: string; mask: string; } export interface CountriesLanguageInterface { [index: string]: string; } export interface CountriesInterface { [index: string]: CountryInterface; } declare const _default: CountriesInterface; export default _default;