File tree 2 files changed +6
-2
lines changed 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -18153,7 +18153,7 @@ interface RTCPeerConnectionEventMap {
18153
18153
"connectionstatechange": Event;
18154
18154
"datachannel": RTCDataChannelEvent;
18155
18155
"icecandidate": RTCPeerConnectionIceEvent;
18156
- "icecandidateerror": Event ;
18156
+ "icecandidateerror": RTCPeerConnectionIceErrorEvent ;
18157
18157
"iceconnectionstatechange": Event;
18158
18158
"icegatheringstatechange": Event;
18159
18159
"negotiationneeded": Event;
@@ -18188,7 +18188,7 @@ interface RTCPeerConnection extends EventTarget {
18188
18188
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/icecandidate_event) */
18189
18189
onicecandidate: ((this: RTCPeerConnection, ev: RTCPeerConnectionIceEvent) => any) | null;
18190
18190
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/icecandidateerror_event) */
18191
- onicecandidateerror: ((this: RTCPeerConnection, ev: Event ) => any) | null;
18191
+ onicecandidateerror: ((this: RTCPeerConnection, ev: RTCPeerConnectionIceErrorEvent ) => any) | null;
18192
18192
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/iceconnectionstatechange_event) */
18193
18193
oniceconnectionstatechange: ((this: RTCPeerConnection, ev: Event) => any) | null;
18194
18194
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/icegatheringstatechange_event) */
Original file line number Diff line number Diff line change 2096
2096
{
2097
2097
"name" : " datachannel" ,
2098
2098
"type" : " RTCDataChannelEvent"
2099
+ },
2100
+ {
2101
+ "name" : " icecandidateerror" ,
2102
+ "type" : " RTCPeerConnectionIceErrorEvent"
2099
2103
}
2100
2104
]
2101
2105
},
You can’t perform that action at this time.
0 commit comments