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 | |
---|
1 | import Agent from './agent'
|
---|
2 | import Dispatcher from './dispatcher'
|
---|
3 |
|
---|
4 | export default EnvHttpProxyAgent
|
---|
5 |
|
---|
6 | declare class EnvHttpProxyAgent extends Dispatcher {
|
---|
7 | constructor(opts?: EnvHttpProxyAgent.Options)
|
---|
8 |
|
---|
9 | dispatch(options: Agent.DispatchOptions, handler: Dispatcher.DispatchHandlers): boolean;
|
---|
10 | }
|
---|
11 |
|
---|
12 | declare 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.