Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion types/env-http-proxy-agent.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Agent from './agent'
import ProxyAgent from './proxy-agent'
import Dispatcher from './dispatcher'

export default EnvHttpProxyAgent
Expand All @@ -10,7 +11,7 @@ declare class EnvHttpProxyAgent extends Dispatcher {
}

declare namespace EnvHttpProxyAgent {
export interface Options extends Agent.Options {
export interface Options extends Omit<ProxyAgent.Options, 'uri'> {
/** Overrides the value of the HTTP_PROXY environment variable */
httpProxy?: string;
/** Overrides the value of the HTTPS_PROXY environment variable */
Expand Down
Loading