source: imaps-frontend/node_modules/undici-types/env-http-proxy-agent.d.ts

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 675 bytes
Line 
1import Agent from './agent'
2import Dispatcher from './dispatcher'
3
4export default EnvHttpProxyAgent
5
6declare class EnvHttpProxyAgent extends Dispatcher {
7 constructor(opts?: EnvHttpProxyAgent.Options)
8
9 dispatch(options: Agent.DispatchOptions, handler: Dispatcher.DispatchHandlers): boolean;
10}
11
12declare namespace EnvHttpProxyAgent {
13 export interface Options extends Agent.Options {
14 /** Overrides the value of the HTTP_PROXY environment variable */
15 httpProxy?: string;
16 /** Overrides the value of the HTTPS_PROXY environment variable */
17 httpsProxy?: string;
18 /** Overrides the value of the NO_PROXY environment variable */
19 noProxy?: string;
20 }
21}
Note: See TracBrowser for help on using the repository browser.