logger-plugin.d.ts 255 B

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