ipes
Version:
Find the user ip infos, country information and more...
10 lines (9 loc) • 356 B
TypeScript
import { IpInfoType, CountriesType, InspectorType } from "./types";
export declare class Ipes {
private IPINFO;
private COUNTRY_INFO;
find_ip(): Promise<IpInfoType>;
find_country(countryCode: string, options?: InspectorType): Promise<CountriesType>;
get_country_info(): Promise<CountriesType>;
get_ip_info(): Promise<IpInfoType>;
}