From ee4b32582a56e0a823b9658c11beae1aeaffd7c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Pla=C4=8Dek?= <11457665+urugator@users.noreply.github.com> Date: Tue, 27 May 2025 15:01:12 +0200 Subject: [PATCH] fix EnvHttpProxyAgent.Options --- types/env-http-proxy-agent.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/types/env-http-proxy-agent.d.ts b/types/env-http-proxy-agent.d.ts index 28fbb846a35..1733d7f6e32 100644 --- a/types/env-http-proxy-agent.d.ts +++ b/types/env-http-proxy-agent.d.ts @@ -1,4 +1,5 @@ import Agent from './agent' +import ProxyAgent from './proxy-agent' import Dispatcher from './dispatcher' export default EnvHttpProxyAgent @@ -10,7 +11,7 @@ declare class EnvHttpProxyAgent extends Dispatcher { } declare namespace EnvHttpProxyAgent { - export interface Options extends Agent.Options { + export interface Options extends Omit { /** Overrides the value of the HTTP_PROXY environment variable */ httpProxy?: string; /** Overrides the value of the HTTPS_PROXY environment variable */