UNPKG

@stacrypt/world-countries-info

Version:

List of countries with useful info, and search functions

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