@radzztnzx/rbail
Version:
Pro Bails based by Whiskeysockets, Modified by RadzzOffc
29 lines • 582 B
JavaScript
export class USyncLIDProtocol {
constructor() {
this.name = 'lid';
}
getQueryElement() {
return {
tag: 'lid',
attrs: {}
};
}
getUserElement(user) {
if (user.lid) {
return {
tag: 'lid',
attrs: { jid: user.lid }
};
}
else {
return null;
}
}
parser(node) {
if (node.tag === 'lid') {
return node.attrs.val;
}
return null;
}
}
//# sourceMappingURL=UsyncLIDProtocol.js.map