sinch-rtc
Version:
RTC JavaScript/Web SDK
14 lines (13 loc) • 599 B
TypeScript
import { CallQualityWarningEventType } from "../CallQualityWarningEventType";
import { CallQualityWarningEvent } from "./CallQualityWarningEvent";
/**
* Warning issued when the audio level measurements of the inbound rtp audio stream from
* last 2 seconds are equal to 0.
*
* @param type - `Trigger` when the warning is emitted, `Recover` when the warning is recovered.
*/
export declare class ZeroInboundAudioLevelWarningEvent implements CallQualityWarningEvent {
readonly type: CallQualityWarningEventType;
constructor(type: CallQualityWarningEventType);
readonly name: string;
}