intl-input-phone
Version:
Angular library to provide the international phone number feature by country dropdown and input fields with lots of customization and features like input masking, change the country, require valiation and many more.
29 lines (28 loc) • 687 B
TypeScript
/**All the enums will be here. */
/**Enums for content which can be available and show in option */
export declare enum ContentOptionsEnum {
Flag = 0,
CountryName = 1,
CountryPhoneCode = 2
}
/**
* Enum for specify output type of result.
*/
export declare enum OutputOptionsEnum {
NumberWithCountryCode = 0,
Number = 1
}
/**Enum to specify the sort order of dropdown list. */
export declare enum SortOrderEnum {
CountryName = 0,
CountryISOCode = 1,
CountryPhoneCode = 2
}
/**
* Enum for show the tooltip text
*/
export declare enum TooltipOptionsEnum {
CountryName = 1,
CountryPhoneCode = 2,
CountryISOCode = 3
}