UNPKG

evolution-api-sdk

Version:

Unofficial SDK for the Evolution Whatsapp API v2

16 lines (14 loc) 347 B
interface Message { remoteJid: string; fromMe: boolean; id: string; } interface MarkAsReadRequest { readMessages: Message[]; } interface MarkAsReadResponse { message: string; read: "success" | "error"; } type MarkAsReadOptions = MarkAsReadRequest; export type { MarkAsReadOptions, MarkAsReadRequest, MarkAsReadResponse };