index.d.ts
 1  import { Agent, AgentOptions } from 'agent-base';
 2  
 3  declare module ProxyAgent {
 4  	interface ProxyAgent extends Agent {
 5      }
 6  }
 7  
 8  declare const proxy: ProxyAgentConstructor;
 9  
10  interface ProxyAgentConstructor {
11      (options?: AgentOptions | string): ProxyAgent.ProxyAgent;
12      new (options?: AgentOptions | string): ProxyAgent.ProxyAgent;
13  }
14  
15  export = proxy;