📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 12:19:34
📂
/ (Root)
/
lib
/
node_modules
/
npm
/
node_modules
/
https-proxy-agent
📍 /lib/node_modules/npm/node_modules/https-proxy-agent
🔄 Refresh
✏️
Editing: index.d.ts
Read Only
declare module 'https-proxy-agent' { import * as https from 'https'; namespace HttpsProxyAgent { interface HttpsProxyAgentOptions { host: string; port: number | string; secureProxy?: boolean; headers?: { [key: string]: string; }; [key: string]: any; } } // HttpsProxyAgent doesnt *actually* extend https.Agent, but for my purposes I want it to pretend that it does class HttpsProxyAgent extends https.Agent { constructor(opts: HttpsProxyAgent.HttpsProxyAgentOptions | string); } export = HttpsProxyAgent; }
💾 Save Changes
❌ Cancel