UNPKG

@vreden/meta

Version:

Baileys is a lightweight JavaScript library for interacting with the WhatsApp Web API using WebSocket.

18 lines (14 loc) 355 B
"use strict" Object.defineProperty(exports, "__esModule", { value: true }) const events_1 = require("events") class AbstractSocketClient extends events_1.EventEmitter { constructor(url, config) { super() this.url = url this.config = config this.setMaxListeners(0) } } module.exports = { AbstractSocketClient }