mirror of
https://github.com/cheveguerra/whatsapp-web.js.git
synced 2026-04-20 12:39:20 +00:00
feat: load reactions in message (#1897)
* msg find reactions * reaction list * return hasReaction only true or false --------- Co-authored-by: Rajeh Taher <rajeh@reforward.dev>
This commit is contained in:
14
index.d.ts
vendored
14
index.d.ts
vendored
@@ -649,6 +649,7 @@ declare namespace WAWebJS {
|
||||
* broadcast: false,
|
||||
* fromMe: false,
|
||||
* hasQuotedMsg: false,
|
||||
* hasReaction: false,
|
||||
* location: undefined,
|
||||
* mentionedIds: []
|
||||
* }
|
||||
@@ -678,6 +679,8 @@ declare namespace WAWebJS {
|
||||
hasMedia: boolean,
|
||||
/** Indicates if the message was sent as a reply to another message */
|
||||
hasQuotedMsg: boolean,
|
||||
/** Indicates whether there are reactions to the message */
|
||||
hasReaction: boolean,
|
||||
/** Indicates the duration of the message in seconds */
|
||||
duration: string,
|
||||
/** ID that represents the message */
|
||||
@@ -779,6 +782,10 @@ declare namespace WAWebJS {
|
||||
* Gets the payment details associated with a given message
|
||||
*/
|
||||
getPayment: () => Promise<Payment>,
|
||||
/**
|
||||
* Gets the reactions associated with the given message
|
||||
*/
|
||||
getReactions: () => Promise<ReactionList[]>,
|
||||
}
|
||||
|
||||
/** ID that represents a message */
|
||||
@@ -1381,6 +1388,13 @@ declare namespace WAWebJS {
|
||||
senderId: string
|
||||
ack?: number
|
||||
}
|
||||
|
||||
export type ReactionList = {
|
||||
id: string,
|
||||
aggregateEmoji: string,
|
||||
hasReactionByMe: boolean,
|
||||
senders: Array<Reaction>
|
||||
}
|
||||
}
|
||||
|
||||
export = WAWebJS
|
||||
|
||||
Reference in New Issue
Block a user