From 76cb9c2a39d477a64824a985ade40507e3bbade1 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Fri, 13 Feb 2026 21:34:48 -0800 Subject: feat(vanilla): add testing infrastructure and tests (NK-wjnczv) --- .../https-proxy-agent/dist/parse-proxy-response.d.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 vanilla/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts (limited to 'vanilla/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts') diff --git a/vanilla/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts b/vanilla/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts new file mode 100644 index 0000000..84d5a9c --- /dev/null +++ b/vanilla/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts @@ -0,0 +1,15 @@ +/// +/// +/// +import { IncomingHttpHeaders } from 'http'; +import { Readable } from 'stream'; +export interface ConnectResponse { + statusCode: number; + statusText: string; + headers: IncomingHttpHeaders; +} +export declare function parseProxyResponse(socket: Readable): Promise<{ + connect: ConnectResponse; + buffered: Buffer; +}>; +//# sourceMappingURL=parse-proxy-response.d.ts.map \ No newline at end of file -- cgit v1.2.3