We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2bcac1 commit 6e6f581Copy full SHA for 6e6f581
src/components/DebugPane/CapabilitiesCodec.tsx
@@ -2,7 +2,7 @@ import React from 'react'
2
3
import { Message } from './Message'
4
5
-interface RTCRtpCapabilitiesCodecWithIndexSignature extends RTCRtpCodecCapability {
+interface RTCRtpCapabilitiesCodecWithIndexSignature extends RTCRtpCodec {
6
[x: string]: string | number | undefined
7
}
8
@@ -22,7 +22,7 @@ const Log = React.memo((props: LogProps) => {
22
const getCapabilitiesCodec = (
23
getCapabilities: (kind: string) => RTCRtpCapabilities | null,
24
kind: string,
25
-): RTCRtpCodecCapability[] => {
+): RTCRtpCodec[] => {
26
if (!getCapabilities) {
27
return []
28
0 commit comments