sinch-rtc
Version:
RTC JavaScript/Web SDK
13 lines (12 loc) • 577 B
TypeScript
import { CallQualityWarningEventType } from "../CallQualityWarningEventType";
import { CallQualityWarningEvent } from "./CallQualityWarningEvent";
/**
* Warning event emitted when ICE connection is not in `connected` state after the call is established.
*
* @param type - `Trigger` when the warning is emitted, `Recover` when the warning is recovered.
*/
export declare class MissingMediaStreamWarningEvent implements CallQualityWarningEvent {
readonly type: CallQualityWarningEventType;
constructor(type: CallQualityWarningEventType);
readonly name: string;
}