frontend/.pnpm-store/v3/files/7a/eb38d8a6a487afb6734252dbf5c9788aa039a4e6e952f0cdc16052b83f5a7c82b44bd67bee5b973e50da985a201da22b49ade01fcfd60987fd00c5282833bd

9 lines
300 B
Plaintext

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