PeerSignal: { 
    sdp?: string; 
    type: Exclude<RTCSdpType, "rollback">; 
} | { 
    candidate: RTCIceCandidateInit; 
    type: "candidate"; 
} | { 
    id: string; 
    name: string; 
    type: "stream"; 
} | { 
    type: "close"; 
}
Type declaration
- Optionalsdp?: string
- type: Exclude<RTCSdpType, "rollback">
Type declaration
- candidate: RTCIceCandidateInit
- type: "candidate"
Type declaration
- id: string
- name: string
- type: "stream"