File size: 255 Bytes
026255b
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import type { Agent } from 'node:http';
export type Sockets = Pick<Agent, 'sockets'>;
/**
 * Get port from target
 * Using proxyRes.req.agent.sockets to determine the target port
 */
export declare function getPort(sockets?: Sockets): string | undefined;