UNPKG

node-multi-curl

Version:

A performant multi-curl class in Node.js that supports proxies and concurrent requests

10 lines (9 loc) 253 B
export declare class ProxyManager { private proxies; private currentIndex; constructor(proxies: string[]); getNextProxy(): string; addProxy(proxy: string): void; removeProxy(proxy: string): void; getProxiesCount(): number; }