UNPKG

v-phone-input

Version:

International phone field for Vuetify 3 and Vue 3.

8 lines (7 loc) 356 B
import { PreferableCountryGuesser } from '../../types/countries'; import { default as Ip2cCountryGuesser } from './ip2cCountryGuesser'; export default class MemoIp2cCountryGuesser extends Ip2cCountryGuesser implements PreferableCountryGuesser { private memoCountry; guess(): Promise<string | undefined>; setPreference(country: string): void; }