This is method of my chat service,
sendCustomMessage(to, from, body) {
const query = $msg({to: to, from: from, type: 'chat'}).c("body").t(body);
console.log("query", query)
this._xmppConnection.send(query);
}
i am getting issue for "$msg". the issue is "Cannot find name '$msg'.ts(2304)" ... please help me how to fix
Please do like this . issue is with the scope of variable . import { Strophe, $pres, $msg, $iq } from 'strophe.js';