UNPKG

ng-phone-number

Version:

A simple international telephone number input. Allows you to create a phone number field with country dropdown with country names in your language.

18 lines (17 loc) 389 B
import { Country } from './country.model'; export declare class CountryService { private countries; constructor(); /** * Returns the countries */ getCountries(): Country[]; /** * Returns the countries by iso code */ getCountriesByISO(listOfIso: any): Country[]; /** * Load and returns the countries */ private loadCountries; }