aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts
blob: 84d5a9cd699d64f7bd8d4dde91149124ba28f452 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// <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