Interface SelectedRTCCandidate

interface SelectedRTCCandidate {
    address: string;
    port: number;
    protocol: "tcp" | "udp";
    type: RTCIceCandidateType;
}

Properties

address: string
port: number
protocol: "tcp" | "udp"
type: RTCIceCandidateType