UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

15 lines • 469 B
/// <reference types="node" /> /// <reference types="node" /> /// <reference types="node" /> 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