UNPKG

countries-api-json

Version:

A comprehensive package providing detailed information about countries in a structured JSON format.

13 lines (11 loc) 254 B
declare module 'countries-api-json' { export interface Country { name: string code: string dial_code: string flag: string flag_url: string } const countries: Country[]; export default countries; }