Files
geo/backend/node_modules/@prisma/fetch-engine/dist/getProxyAgent.d.ts

4 lines
218 B
TypeScript
Raw Normal View History

2026-02-04 00:11:19 +05:00
import { HttpProxyAgent } from 'http-proxy-agent';
import { HttpsProxyAgent } from 'https-proxy-agent';
export declare function getProxyAgent(url: string): HttpProxyAgent<string> | HttpsProxyAgent<string> | undefined;