summaryrefslogtreecommitdiff
path: root/alarm/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts
blob: 7565674a338cb19bdc09d77ed5bd7505da022a85 (plain)
1
2
3
4
5
6
7
/// <reference types="node" />
import { Readable } from 'stream';
export interface ProxyResponse {
    statusCode: number;
    buffered: Buffer;
}
export default function parseProxyResponse(socket: Readable): Promise<ProxyResponse>;