sinch-rtc
Version:
RTC JavaScript/Web SDK
16 lines (15 loc) • 853 B
TypeScript
import { CallQualityWarningEventType } from "../CallQualityWarningEventType";
import { CallQualityWarningMediaStreamType } from "../CallQualityWarningMediaStreamType";
import { CallQualityWarningEvent } from "./CallQualityWarningEvent";
/**
* Warning event issued when packet loss is greater then 1% in 3 out of last 4 samples.
*
* @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 HighInboundPacketLossWarningEvent implements CallQualityWarningEvent {
readonly type: CallQualityWarningEventType;
readonly mediaStreamType: CallQualityWarningMediaStreamType;
constructor(type: CallQualityWarningEventType, mediaStreamType: CallQualityWarningMediaStreamType);
readonly name: string;
}