UNPKG

sinch-rtc

Version:

RTC JavaScript/Web SDK

21 lines (20 loc) 682 B
import { CallQualityWarningEventType } from "../CallQualityWarningEventType"; import { CallQualityWarningMediaStreamType } from "../CallQualityWarningMediaStreamType"; /** * Base interface for objects describing call quality warning events. */ export interface CallQualityWarningEvent { /** * String representation of the warning */ readonly name: string; /** * Type of the warning event. */ readonly type: CallQualityWarningEventType; /** * The stream type asoociated with the warning or undefined if warning * can't be associated with specific stream. */ readonly mediaStreamType?: CallQualityWarningMediaStreamType; }