UNPKG

countries-api-json

Version:

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

11 lines (10 loc) 220 B
// index.d.ts declare module 'countries-list-json' { export interface Country { name: string code: string dial_code: string flag: string } export const countries: Country[]; }