This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { WAProto } = require('@whiskeysockets/baileys'); | |
// Message Collectors / Wait for Message | |
class MessageCollection { | |
// Internal object to temporarily store msgs | |
#msgs = {}; | |
// Is the socket event handler binded? | |
isBinded = false; | |
socket = null; |