UNPKG

proxy-connection

Version:

Proxy client with automatic connection management, health checking, and fetch-like API

11 lines 243 B
export type ProxyBase = { ip: string; port: number; user: string; pass: string; }; export declare const testProxy: (proxy: ProxyBase) => Promise<{ latency: number; alive: boolean; }>; //# sourceMappingURL=index.d.ts.map