UNPKG

evolution-api-sdk

Version:

Unofficial SDK for the Evolution Whatsapp API v2

22 lines (19 loc) 460 B
import { ChatId, MessageId } from '../../../types/tags.js'; interface ReactionMessageOptions { key: { remoteJid: ChatId; fromMe: boolean; id: MessageId; }; reaction: string; } interface ReactionMessageResponse { key: { remoteJid: ChatId; fromMe: boolean; id: MessageId; }; messageTimestamp: string; status: string; } export type { ReactionMessageOptions, ReactionMessageResponse };