You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
469 B
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
|