UNPKG

@onesy/utils

Version:
14 lines (13 loc) 294 B
export interface ICountry { flag: string; name: string; full_name: string; sovereignty: string; 'alpha-2': string; 'alpha-3': string; numeric: string; subdivision: string; tlds: string[]; } declare const countries: Array<ICountry>; export default countries;