UNPKG

@artmajeur/react-native-paper-phone-number-input

Version:

A performant phone number input component for react-native-paper with country picker

15 lines 383 B
export interface Country { name: string; flag: string; code: string; dialCode: string; length: number; } export declare const countries: Country[]; type CountryWithoutCode = Omit<Country, 'code'>; interface CountriesMap { [code: string]: CountryWithoutCode; } export declare const countriesMap: CountriesMap; export {}; //# sourceMappingURL=countries.d.ts.map