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
TypeScript
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