forked from tornado-packages/tornado-core
7 lines
151 B
TypeScript
7 lines
151 B
TypeScript
|
export interface IPResult {
|
||
|
ip: string;
|
||
|
iso?: string;
|
||
|
tor?: boolean;
|
||
|
}
|
||
|
export declare function fetchIp(ipEcho: string): Promise<IPResult>;
|