@finofo/react-international-phone
Version:
☎️ International phone input component for React
7 lines (6 loc) • 324 B
TypeScript
import { CountryData, CountryGuessResult, CountryIso2 } from '../../types';
export declare const guessCountryByPartialNumber: ({ phone: partialPhone, countries, currentCountryIso2, }: {
phone: string;
countries?: CountryData[] | undefined;
currentCountryIso2?: CountryIso2 | undefined;
}) => CountryGuessResult;