truecallerjs
Version:
TruecallerJS: A library for effortless retrieval of phone number details using the Truecaller API in Node.js, JavaScript, and TypeScript projects.
17 lines (16 loc) • 339 B
TypeScript
interface CountryData {
name: string;
native: string;
phone: number[];
continent: string;
capital: string;
currency: string[];
languages: string[];
flag: string;
flagURL: string;
}
interface Countries {
[countryCode: string]: CountryData;
}
declare const countries: Countries;
export { countries };