/
Romenxek
/
Diplom
Обзор
Документация
Войти
/
Romenxek
/
Diplom
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/https-proxy-agent/dist/index.d.ts
23 строки
970 B
Romka
first commit
31 май 2025, 16:07
31 май 2025, 16:07
9962409
Код
Авторство
О чём код?
/// <reference types="node" /> import net from 'net'; import tls from 'tls'; import { Url } from 'url'; import { AgentOptions } from 'agent-base'; import { OutgoingHttpHeaders } from 'http'; import _HttpsProxyAgent from './agent'; declare function createHttpsProxyAgent(opts: string | createHttpsProxyAgent.HttpsProxyAgentOptions): _HttpsProxyAgent; declare namespace createHttpsProxyAgent { interface BaseHttpsProxyAgentOptions { headers?: OutgoingHttpHeaders; secureProxy?: boolean; host?: string | null; path?: string | null; port?: string | number | null; } export interface HttpsProxyAgentOptions extends AgentOptions, BaseHttpsProxyAgentOptions, Partial<Omit<Url & net.NetConnectOpts & tls.ConnectionOptions, keyof BaseHttpsProxyAgentOptions>> { } export type HttpsProxyAgent = _HttpsProxyAgent; export const HttpsProxyAgent: typeof _HttpsProxyAgent; export {}; } export = createHttpsProxyAgent;