• Get all reactions in a message

    Parameters

    • msgId: string

    Returns Promise<{
        reactionByMe: {
            id: MsgKey;
            msgId: MsgKey;
            orphan: number;
            reactionText: string;
            read: boolean;
            senderUserJid: string;
            timestamp: number;
        };
        reactions: {
            aggregateEmoji: string;
            hasReactionByMe: boolean;
            senders: {
                id: MsgKey;
                msgId: MsgKey;
                orphan: number;
                reactionText: string;
                read: boolean;
                senderUserJid: string;
                timestamp: number;
            }[];
        }[];
    }>

    Example

    WPP.chat.getReactions('true_[number]@c.us_ABCDEF');