UNPKG

@stacrypt/world-countries-info

Version:

List of countries with useful info, and search functions

7 lines (6 loc) 236 B
import { Country } from "../data/Country"; /** * Finds and returns a country based on it's code (alpha2, alpha3, dialCode) */ declare const getCountry: (searchQuery: string | number) => Country | undefined; export default getCountry;