UNPKG

sinch-rtc

Version:

RTC JavaScript/Web SDK

16 lines (15 loc) 855 B
import { CallQualityWarningEventType } from "../CallQualityWarningEventType"; import { CallQualityWarningMediaStreamType } from "../CallQualityWarningMediaStreamType"; import { CallQualityWarningEvent } from "./CallQualityWarningEvent"; /** * Warning event issued when Jitter value is above 30 ms in 3 out of last 4 samples measured. * * @param type - `Trigger` when the warning is emitted, `Recover` when the warning is recovered. * @param mediaStreamType - The media stream type that the warning is related to. */ export declare class HighInboundJitterWarningEvent implements CallQualityWarningEvent { readonly type: CallQualityWarningEventType; readonly mediaStreamType: CallQualityWarningMediaStreamType; constructor(type: CallQualityWarningEventType, mediaStreamType: CallQualityWarningMediaStreamType); readonly name: string; }