UNPKG

phone-number-lookup

Version:

phone-number-lookup is TS written library that provides information about a phone number, such as: Country, Prefix, Type (Mobile/Fixed/VoIP), Carrier etc. Every data is processed locally, so no internet connection is needed. Made primarily for personal-us

3 lines (2 loc) 150 B
import { IPhoneInformation } from '../interface/phone-information'; export declare function phoneLookup(numbers: Array<string>): IPhoneInformation[];