UNPKG

proxy-chain

Version:

Node.js implementation of a proxy server (think Squid) with support for SSL, authentication, upstream proxy chaining, and protocol tunneling.

11 lines 338 B
/// <reference types="node" /> /// <reference types="node" /> import type net from 'node:net'; import type tls from 'node:tls'; type AdditionalProps = { proxyChainId?: number; }; export type Socket = net.Socket & AdditionalProps; export type TLSSocket = tls.TLSSocket & AdditionalProps; export {}; //# sourceMappingURL=socket.d.ts.map