UNPKG

wailey-whatsapp-lib

Version:

A robust WhatsApp library for Node.js with support for QR code and pairing code authentication

18 lines (17 loc) 565 B
/** * Wailey-library WABinary Standard Implementation * (Renamed from Baileys while maintaining identical functionality) */ import { WABinaryNode } from './index'; /** * Standard tag dictionary for protocol v2 */ export declare const StandardDictionary: string[]; /** * Legacy encoder implementation for WhatsApp binary protocol */ export declare const encodeBinaryNodeLegacy: (node: WABinaryNode) => Buffer; /** * Legacy decoder implementation for WhatsApp binary protocol */ export declare const decodeBinaryNodeLegacy: (buffer: Buffer) => WABinaryNode;