1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import {Agent} from "https";
export default class HttpsProxyAgent extends Agent {
constructor(proxy, opts) {
super(opts);
this.proxy = proxy;
}
/**
* Called when the node-core HTTP client library is creating a
* new HTTP request.
*/
/*async connect(
req: http.ClientRequest,
opts: AgentConnectOpts
): Promise<net.Socket> {
}*/
}