UNPKG
@renvyteam/baileys
Version:
latest (1.0.4)
1.0.4
WhatsApp API For Interact In WhatsApp
exonity.tech
@renvyteam/baileys
/
lib
/
WAM
/
BinaryInfo.js
17 lines
(14 loc)
•
316 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"use strict"
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
})
class
BinaryInfo
{
constructor
(
options = {}
) {
this
.
protocolVersion
=
5
this
.
sequence
=
0
this
.
events
= []
this
.
buffer
= []
Object
.
assign
(
this
, options) } }
module
.
exports
= {
BinaryInfo
}