Skip to content

Commit

Permalink
Fix test after #1739 (#1789)
Browse files Browse the repository at this point in the history
Co-authored-by: saschanaz <[email protected]>
  • Loading branch information
saschanaz and saschanaz authored Aug 23, 2024
1 parent 4ecb496 commit 56333b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions baselines/ts5.5/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18158,9 +18158,9 @@ interface RTCPeerConnection extends EventTarget {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/signalingState) */
readonly signalingState: RTCSignalingState;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/addIceCandidate) */
addIceCandidate(candidate?: RTCIceCandidateInit): Promise<void>;
addIceCandidate(candidate?: RTCIceCandidateInit | null): Promise<void>;
/** @deprecated */
addIceCandidate(candidate: RTCIceCandidateInit, successCallback: VoidFunction, failureCallback: RTCPeerConnectionErrorCallback): Promise<void>;
addIceCandidate(candidate: RTCIceCandidateInit | null, successCallback: VoidFunction, failureCallback: RTCPeerConnectionErrorCallback): Promise<void>;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/addTrack) */
addTrack(track: MediaStreamTrack, ...streams: MediaStream[]): RTCRtpSender;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/addTransceiver) */
Expand Down

0 comments on commit 56333b3

Please sign in to comment.