UNPKG

countrycodejs

Version:
10 lines (9 loc) 210 B
export declare type Maybe<T> = T | null; export declare type Country = { name: string; dial_code: string; code: string; timezones: string[]; latlng: number[]; capital: Maybe<string>; };