UNPKG

740 BTypeScriptView Raw
1/// <reference types="node" />
2import contentType = require('content-type');
3import http = require('http');
4import https = require('https');
5import proxy = require('./proxy');
6export declare const deps: {
7 readonly proxy: typeof proxy.default;
8 readonly isStream: {
9 (stream: unknown): stream is import("stream").Stream;
10 writable(stream: unknown): stream is import("stream").Writable;
11 readable(stream: unknown): stream is import("stream").Readable;
12 duplex(stream: unknown): stream is import("stream").Duplex;
13 transform(input: unknown): input is import("stream").Transform;
14 };
15 readonly contentType: typeof contentType;
16 readonly http: typeof http;
17 readonly https: typeof https;
18};