UNPKG

react-intl-tel-input-wrapper

Version:

Telephone input component. rewrite Patw's react-intl-tel-input package for React 18

19 lines (14 loc) 399 B
import { CountryData } from '../types' type ExternalCountry = [ CountryData['name'], CountryData['iso2'], CountryData['dialCode'], CountryData['priority'], CountryData['areaCodes'], ] interface AllCountriesStatic { initialize(externalCountriesList: ExternalCountry[]): void getCountries(): CountryData[] } declare const AllCountries: AllCountriesStatic export default AllCountries