tornado-core/dist/ip.d.ts

7 lines
151 B
TypeScript
Vendored

export interface IPResult {
ip: string;
iso?: string;
tor?: boolean;
}
export declare function fetchIp(ipEcho: string): Promise<IPResult>;