mirror of
https://github.com/misskey-dev/media-proxy.git
synced 2025-04-29 19:07:23 +09:00
9 lines
246 B
TypeScript
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;
|
|
};
|