venom-bot
Version:
Venom is a high-performance system developed with JavaScript to create a bot for WhatsApp, support for creating any interaction, such as customer service, media sending, sentence recognition based on artificial intelligence and all types of design archite
25 lines (24 loc) • 439 B
TypeScript
export interface PartialMessage {
id: ID;
body: string;
type: string;
t: number;
notifyName: string;
from: string;
to: string;
self: string;
ack: number;
invis: boolean;
star: boolean;
broadcast: boolean;
mentionedJidList: any[];
isForwarded: boolean;
labels: any[];
}
interface ID {
fromMe: boolean;
remote: string;
id: string;
_serialized: string;
}
export {};