UNPKG

superchats

Version:

SuperChats is a premium library with unique features that control Whatsapp functions. With Superchats you can build service bots, multiservice chats or any system that uses whatsapp

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