@push.rocks/smartrequest
Version:
A module for modern HTTP/HTTPS requests with support for form data, file uploads, JSON, binary data, streams, and more.
17 lines (16 loc) • 605 B
TypeScript
import * as fs from 'fs';
import * as http from 'http';
import * as https from 'https';
import * as path from 'path';
import * as stream from 'stream';
export { http, https, fs, path, stream };
import * as smartpromise from '@push.rocks/smartpromise';
import * as smarturl from '@push.rocks/smarturl';
import * as smartmime from '@push.rocks/smartmime';
export { smartpromise, smarturl, smartmime };
import AgentKeepAlive from 'agentkeepalive';
declare const agentkeepalive: {
HttpAgent: typeof AgentKeepAlive.HttpAgent;
HttpsAgent: typeof AgentKeepAlive.HttpsAgent;
};
export { agentkeepalive };