HostAddress
import type { HostAddress } from "https://googleapis.deno.dev/v1/datastream:v1.ts";
A HostAddress represents a transport end point, which is the combination of an IP address or hostname and a port number.
interface HostAddress {
hostname?: string;
port?: number;
}