summaryrefslogtreecommitdiff
path: root/alarm/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'alarm/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts')
-rw-r--r--alarm/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/alarm/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts b/alarm/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts
new file mode 100644
index 0000000..7565674
--- /dev/null
+++ b/alarm/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts
@@ -0,0 +1,7 @@
+/// <reference types="node" />
+import { Readable } from 'stream';
+export interface ProxyResponse {
+ statusCode: number;
+ buffered: Buffer;
+}
+export default function parseProxyResponse(socket: Readable): Promise<ProxyResponse>;