UNPKG

300 BTypeScriptView Raw
1/// <reference types="node" />
2import { Readable } from 'stream';
3import { UrlWithStringQuery } from 'url';
4import { HttpOptions } from './http';
5/**
6 * Returns a Readable stream from an "https:" URI.
7 */
8export default function get(parsed: UrlWithStringQuery, opts: HttpOptions): Promise<Readable>;