You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
declare var PhoneCallTrap: any;
declare var window: any;
if (window.PhoneCallTrap) {
window.PhoneCallTrap.onCall(function (state) {
switch (state) {
case "RINGING":
console.log("Phone is ringing");
break;
case "OFFHOOK":
console.log("Phone is off-hook");
break;
case "IDLE":
console.log("Phone is idle");
break;
}
});
}
how to import it ??? :)
The text was updated successfully, but these errors were encountered: