evolution-api-sdk
Version:
Unofficial SDK for the Evolution Whatsapp API v2
22 lines (19 loc) • 461 B
text/typescript
import { ChatId, MessageId } from '../../../types/tags.mjs';
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 };