18 lines
786 B
JavaScript
18 lines
786 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var IAdapter = /** @class */ (function () {
|
|
function IAdapter() {
|
|
}
|
|
IAdapter.prototype.registerOnCallIncoming = function (callback) { callback(); };
|
|
IAdapter.prototype.registerOnCallConnected = function (callback) { callback(); };
|
|
IAdapter.prototype.registerOnCallDisconnected = function (callback) { callback(); };
|
|
IAdapter.prototype.acceptCall = function () { };
|
|
IAdapter.prototype.rejectCall = function () { };
|
|
IAdapter.prototype.muteCall = function () { };
|
|
IAdapter.prototype.unmuteCall = function () { };
|
|
IAdapter.prototype.setOnBreak = function () { };
|
|
IAdapter.prototype.setAvailable = function () { };
|
|
return IAdapter;
|
|
}());
|
|
exports.default = IAdapter;
|