tornado-core/dist/ip.d.ts

7 lines
151 B
TypeScript
Raw Permalink Normal View History

2024-10-25 17:09:24 +03:00
export interface IPResult {
ip: string;
iso?: string;
tor?: boolean;
}
export declare function fetchIp(ipEcho: string): Promise<IPResult>;