sinch-rtc
Version:
RTC JavaScript/Web SDK
16 lines • 608 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MissingMediaStreamWarningEvent = void 0;
/**
* 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.
*/
class MissingMediaStreamWarningEvent {
constructor(type) {
this.type = type;
this.name = "missingMediaStream";
}
}
exports.MissingMediaStreamWarningEvent = MissingMediaStreamWarningEvent;
//# sourceMappingURL=MissingMediaStreamWarningEvent.js.map