@twilio/voice-sdk
Version:
Twilio's JavaScript Voice SDK
18 lines (14 loc) • 297 B
text/typescript
// @ts-nocheck
import PeerConnection from './peerconnection';
import RTCPC from './rtcpc';
function enabled() {
return RTCPC.test();
}
function getMediaEngine() {
return typeof RTCIceGatherer !== 'undefined' ? 'ORTC' : 'WebRTC';
}
export {
enabled,
getMediaEngine,
PeerConnection,
};