mirror of
https://github.com/github/codeql-action.git
synced 2025-12-26 09:10:07 +08:00
Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
15 lines
469 B
TypeScript
15 lines
469 B
TypeScript
/// <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
|