frontend/.pnpm-store/v3/files/86/aa859d8576789daca9f8080c28ff20932fe1645bb298dc203b1aebf8940565ed36d1f3628aaac548b57885dda1a76cfc608b35798e753d5e2ac037cbbfd11d

16 lines
352 B
Plaintext

import { Agent, AgentOptions } from 'agent-base';
declare module ProxyAgent {
interface ProxyAgent extends Agent {
}
}
declare const proxy: ProxyAgentConstructor;
interface ProxyAgentConstructor {
(options?: AgentOptions | string): ProxyAgent.ProxyAgent;
new (options?: AgentOptions | string): ProxyAgent.ProxyAgent;
}
export = proxy;