| 21 | import {NumberField} from './NumberField'; |
| 22 | |
| 23 | export interface SettingDialogProps { |
| 24 | open: boolean; |
| 25 | setOpen: (open: boolean) => void; |
| 26 | updateName: (s: string) => void; |
| 27 | saveSettings: (s: Settings) => void; |
| 28 | } |
| 29 | |
| 30 | const getAvailableCodecs = (): PreferredCodec[] => { |
| 31 | if ('getCapabilities' in RTCRtpSender) { |
nothing calls this directly
no outgoing calls
no test coverage detected