다음을 통해 공유


CaptionSettingsSelector type

캡션 언어 및 음성 언어 변경을 위한 구성 요소에 대한 선택기 유형

type CaptionSettingsSelector = (
  state: CallClientState,
  props: CallingBaseSelectorProps
) => {
  currentCaptionLanguage: SupportedCaptionLanguage
  currentSpokenLanguage: SupportedSpokenLanguage
  isCaptionsFeatureActive: boolean
  supportedCaptionLanguages: SupportedCaptionLanguage[]
  supportedSpokenLanguages: SupportedSpokenLanguage[]
}