feat: added starred indicator to messages (#501)

Co-authored-by: Pedro S. Lopez <pedroslopez@me.com>
This commit is contained in:
Antoine Schaller
2020-12-29 00:14:45 +01:00
committed by Pedro S. Lopez
parent 1b946940f4
commit 5a0ccc8b17
2 changed files with 8 additions and 0 deletions

2
index.d.ts vendored
View File

@@ -481,6 +481,8 @@ declare namespace WAWebJS {
id: MessageId,
/** Indicates if the message was forwarded */
isForwarded: boolean,
/** Indicates if the message was starred */
isStarred: boolean,
/** Location information contained in the message, if the message is type "location" */
location: Location,
/** List of vCards contained in the message */

View File

@@ -93,6 +93,12 @@ class Message extends Base {
*/
this.isStatus = data.isStatusV3;
/**
* Indicates if the message was stared
* @type {boolean}
*/
this.isStarred = data.star;
/**
* Indicates if the message was a broadcast
* @type {boolean}