https.d.ts 300 B

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