sinch-rtc
Version:
RTC JavaScript/Web SDK
16 lines (15 loc) • 862 B
TypeScript
import { CallQualityWarningEventType } from "../CallQualityWarningEventType";
import { CallQualityWarningMediaStreamType } from "../CallQualityWarningMediaStreamType";
import { CallQualityWarningEvent } from "./CallQualityWarningEvent";
/**
* Warning event emmitted when Round Trip Time (RTT) drops below 300 (for remote inbound stream).
*
* @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 HighRemoteInboundRttWarningEvent implements CallQualityWarningEvent {
readonly type: CallQualityWarningEventType;
readonly mediaStreamType: CallQualityWarningMediaStreamType;
constructor(type: CallQualityWarningEventType, mediaStreamType: CallQualityWarningMediaStreamType);
readonly name: string;
}