We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 196281c commit 1521e12Copy full SHA for 1521e12
src/typings/https-proxy-agent.d.ts
@@ -1,2 +1,14 @@
1
-// See https://stackoverflow.com/questions/41462729/typescript-react-could-not-find-a-declaration-file-for-module-react-material/41631658#41631658
2
-declare module "https-proxy-agent";
+// See https://stackoverflow.com/questions/44058101/typescript-declare-third-party-modules#44060120
+declare module "https-proxy-agent"
3
+{
4
+ import { Agent } from "http";
5
+
6
+ class HttpsProxyAgent extends Agent
7
+ {
8
+ constructor(proxy: string);
9
+ }
10
11
+ namespace HttpsProxyAgent { }
12
13
+ export = HttpsProxyAgent;
14
+}
0 commit comments