Type alias ConnectionParameters

ConnectionParameters: {
    address: string;
    type: "pipe";
} | {
    host: string;
    port: number;
    type: "ipv4";
}

Type declaration

  • address: string
  • type: "pipe"

Type declaration

  • host: string
  • port: number
  • type: "ipv4"

Generated using TypeDoc