undici
Version:
An HTTP/1.1 client, written from scratch for Node.js
18 lines (13 loc) • 424 B
TypeScript
import Agent = require('./agent')
import Dispatcher = require('./dispatcher')
export = ProxyAgent
declare class ProxyAgent extends Dispatcher {
constructor(options: ProxyAgent.Options | string)
dispatch(options: Agent.DispatchOptions, handler: Dispatcher.DispatchHandlers): boolean;
close(): Promise<void>;
}
declare namespace ProxyAgent {
export interface Options extends Agent.Options {
uri: string;
}
}