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) • 488 B
TypeScript
export interface Reaction {
id: ReactionKey;
from: string;
to: string;
type: string;
t: number;
ack: number;
author: string;
notifyName: string;
invis: boolean;
count: number;
kind: string;
reactionParentKey: ReactionKey;
reactionText: string;
reactionTimestamp: number;
read: boolean;
}
export interface ReactionKey {
fromMe: boolean;
remote: string;
id: string;
participant: string;
_serialized: string;
}