baileys-md
Version:
WhatsApp API
13 lines (12 loc) • 325 B
TypeScript
export declare type WACallUpdateType = 'offer' | 'ringing' | 'timeout' | 'reject' | 'accept';
export declare type WACallEvent = {
chatId: string;
from: string;
isGroup?: boolean;
id: string;
date: Date;
isVideo?: boolean;
status: WACallUpdateType;
offline: boolean;
latencyMs?: number;
};