PortRange
import type { PortRange } from "https://googleapis.deno.dev/v1/workstations:v1.ts";
A PortRange defines a range of ports. Both first and last are inclusive. To specify a single port, both first and last should be the same.
interface PortRange {
first?: number;
last?: number;
}