@zendlora/baileys
Version:
WhatsApp API Modified By Zendlora
23 lines (22 loc) • 444 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.USyncUser = void 0;
class USyncUser {
withId(id) {
this.id = id;
return this;
}
withLid(lid) {
this.lid = lid;
return this;
}
withPhone(phone) {
this.phone = phone;
return this;
}
withType(type) {
this.type = type;
return this;
}
}
exports.USyncUser = USyncUser;