Skip to content

Commit 03ac9d3

Browse files
committed
fix: force assert types [probably a bad idea]
1 parent c478a52 commit 03ac9d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/polyfill/RTCRtp.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ export class RTCRtpTransceiver implements globalThis.RTCRtpTransceiver {
4242

4343
close (): void {
4444
this.#track?.close()
45-
this.#transceiver.close?.()
45+
(this.#transceiver as Video | Audio).close?.()
4646
}
4747

4848
get track (): Track {
4949
return this.#track
5050
}
5151

5252
get media (): Video | Audio {
53-
return this.#transceiver
53+
return this.#transceiver as Video | Audio
5454
}
5555

5656
get direction (): RTCRtpTransceiverDirection {

0 commit comments

Comments
 (0)