FaC: Das alte Flag von Terminen, die in die Zeiterfassung übernommen worden sind, wird ebenfalls berücksichtigt.
27 lines
558 B
TypeScript
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
|
|
}
|