summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/https-proxy-agent/index.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/https-proxy-agent/index.d.ts')
-rw-r--r--deps/npm/node_modules/https-proxy-agent/index.d.ts34
1 files changed, 17 insertions, 17 deletions
diff --git a/deps/npm/node_modules/https-proxy-agent/index.d.ts b/deps/npm/node_modules/https-proxy-agent/index.d.ts
index 00989abade..cec35d85e0 100644
--- a/deps/npm/node_modules/https-proxy-agent/index.d.ts
+++ b/deps/npm/node_modules/https-proxy-agent/index.d.ts
@@ -1,22 +1,22 @@
declare module 'https-proxy-agent' {
- import * as https from 'https'
+ import * as https from 'https';
- namespace HttpsProxyAgent {
- interface HttpsProxyAgentOptions {
- host: string
- port: number
- secureProxy?: boolean
- headers?: {
- [key: string]: string
- }
- [key: string]: any
- }
- }
+ namespace HttpsProxyAgent {
+ interface HttpsProxyAgentOptions {
+ host: string;
+ port: number | string;
+ secureProxy?: boolean;
+ headers?: {
+ [key: string]: string;
+ };
+ [key: string]: any;
+ }
+ }
- // HttpsProxyAgent doesnt *actually* extend https.Agent, but for my purposes I want it to pretend that it does
- class HttpsProxyAgent extends https.Agent {
- constructor(opts: HttpsProxyAgent.HttpsProxyAgentOptions | string)
- }
+ // HttpsProxyAgent doesnt *actually* extend https.Agent, but for my purposes I want it to pretend that it does
+ class HttpsProxyAgent extends https.Agent {
+ constructor(opts: HttpsProxyAgent.HttpsProxyAgentOptions | string);
+ }
- export = HttpsProxyAgent
+ export = HttpsProxyAgent;
}