UNPKG

gdal-async

Version:

Bindings to GDAL (Geospatial Data Abstraction Library) with full async support

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