Interface CommentReaction

Reactions of a comment

interface CommentReaction {
    authorHasReacted: boolean;
    count: number;
    iconPath: string | Uri;
    label: string;
}

Properties

authorHasReacted: boolean

Whether the author of the comment has reacted to this reaction

count: number

The number of users who have reacted to this reaction

iconPath: string | Uri

Icon for the reaction shown in UI.

label: string

The human-readable label for the reaction