UNPKG

country-list-json

Version:

List of countries in json format that includes country dial code, country abbreviation and flag.

9 lines 196 B
declare module 'country-list-json' { export type CountryListItemType = { dial_code: string; code: string; flag: string; name: string; }; export const countries: CountryListItemType[]; }