2021-12-21 16:35:16 +08:00
|
|
|
var exec = require('cordova/exec');
|
|
|
|
|
|
|
|
function Trtc() {}
|
|
|
|
|
|
|
|
Trtc.prototype.joinChannel = function(arg, success, error) {
|
|
|
|
exec(success, error, 'Trtc', 'joinChannel', [arg]);
|
|
|
|
};
|
|
|
|
|
2021-12-26 19:03:41 +08:00
|
|
|
Trtc.prototype.userInfoChange = function(userInfo,success, error) {
|
|
|
|
exec(success, error, 'Trtc', 'userInfoChange', [userInfo]);
|
|
|
|
}
|
|
|
|
|
|
|
|
Trtc.prototype.fireEvent = function(event,extra) {
|
|
|
|
cordova.fireDocumentEvent("trtc."+event, extra);
|
2021-12-21 16:35:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = new Trtc();
|