UNPKG

phone-number-generator-js

Version:

Generates a random phone number following the E.164 international standard

10 lines (9 loc) 263 B
export interface CountryPhoneData { alpha2: string; alpha3: string; country_code: string; country_name: string; mobile_begin_with: string[]; phone_number_lengths: number[]; } export declare const countryPhoneDataArray: CountryPhoneData[];