UNPKG

@vreden/meta

Version:

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

14 lines (13 loc) 334 B
export type WACallUpdateType = 'offer' | 'ringing' | 'timeout' | 'reject' | 'accept' | 'terminate' export type WACallEvent = { chatId: string from: string isGroup?: boolean groupJid?: string id: string date: Date isVideo?: boolean status: WACallUpdateType offline: boolean latencyMs?: number }