UNPKG

349 BTypeScriptView Raw
1import { Agent, AgentOptions } from 'agent-base';
2
3declare module ProxyAgent {
4 interface ProxyAgent extends Agent {
5 }
6}
7
8declare const proxy: ProxyAgentConstructor;
9
10interface ProxyAgentConstructor {
11 (options: AgentOptions | string): ProxyAgent.ProxyAgent;
12 new (options: AgentOptions | string): ProxyAgent.ProxyAgent;
13}
14
15export = proxy;
\No newline at end of file