%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
import { URL, UrlObject } from 'url' import { Duplex } from 'stream' import Dispatcher = require('./dispatcher') export { request, stream, pipeline, connect, upgrade, } /** Performs an HTTP request. */ declare function request( url: string | URL | UrlObject, options?: { dispatcher?: Dispatcher } & Omit<Dispatcher.RequestOptions, 'origin' | 'path' | 'method'> & Partial<Pick<Dispatcher.RequestOptions, 'method'>>, ): Promise<Dispatcher.ResponseData>; /** A faster version of `request`. */ declare function stream( url: string | URL | UrlObject, options: { dispatcher?: Dispatcher } & Omit<Dispatcher.RequestOptions, 'origin' | 'path'>, factory: Dispatcher.StreamFactory ): Promise<Dispatcher.StreamData>; /** For easy use with `stream.pipeline`. */ declare function pipeline( url: string | URL | UrlObject, options: { dispatcher?: Dispatcher } & Omit<Dispatcher.PipelineOptions, 'origin' | 'path'>, handler: Dispatcher.PipelineHandler ): Duplex; /** Starts two-way communications with the requested resource. */ declare function connect( url: string | URL | UrlObject, options?: { dispatcher?: Dispatcher } & Omit<Dispatcher.ConnectOptions, 'origin' | 'path'> ): Promise<Dispatcher.ConnectData>; /** Upgrade to a different protocol. */ declare function upgrade( url: string | URL | UrlObject, options?: { dispatcher?: Dispatcher } & Omit<Dispatcher.UpgradeOptions, 'origin' | 'path'> ): Promise<Dispatcher.UpgradeData>;