@vreden/meta
Version:
Baileys is a lightweight JavaScript library for interacting with the WhatsApp Web API using WebSocket.
19 lines (16 loc) • 423 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true })
class CiphertextMessage {
constructor() {
this.UNSUPPORTED_VERSION = 1
this.CURRENT_VERSION = 3
this.WHISPER_TYPE = 2
this.PREKEY_TYPE = 3
this.SENDERKEY_TYPE = 4
this.SENDERKEY_DISTRIBUTION_TYPE = 5
this.ENCRYPTED_MESSAGE_OVERHEAD = 53
}
}
module.exports = {
CiphertextMessage
}