media-proxy/built/http.d.ts
2023-02-05 12:34:04 +00:00

9 lines
246 B
TypeScript

/// <reference types="node" />
/// <reference types="node" />
import * as http from 'node:http';
import * as https from 'node:https';
export declare function getAgents(proxy?: string): {
httpAgent: http.Agent;
httpsAgent: https.Agent;
};