UNPKG

wa.ts

Version:

A simple Node.js library for simplifying WhatsApp Web socket connection using the WhiskeySockets/Baileys library.

9 lines (8 loc) 219 B
import { WAMessage } from '@whiskeysockets/baileys/lib/Types/Message'; export interface Message { from: string; text: string; type: string; reply: (text: string) => Promise<void>; data: WAMessage; }