Files
BeWoPlaner/BeWoPlanerMobil/node_modules/hpagent/index.d.ts
Lyndon Jetten fda2c306b5 MoK: Report Viewer hinzugefügt
FaC: Das alte Flag von Terminen, die in die Zeiterfassung übernommen worden sind, wird ebenfalls berücksichtigt.
2023-03-13 19:39:04 +01:00

27 lines
558 B
TypeScript

import * as http from 'http'
import * as https from 'https'
import { URL } from 'url'
declare class HttpProxyAgent extends http.Agent {
constructor(options: HttpProxyAgentOptions)
}
interface HttpProxyAgentOptions extends http.AgentOptions {
proxy: string | URL
}
declare class HttpsProxyAgent extends https.Agent {
constructor(options: HttpsProxyAgentOptions)
}
interface HttpsProxyAgentOptions extends https.AgentOptions {
proxy: string | URL
}
export {
HttpProxyAgent,
HttpProxyAgentOptions,
HttpsProxyAgent,
HttpsProxyAgentOptions
}