Sensemaking Tools Documentation
    Preparing search index...

    Interface CommentWithVoteInfo

    A text that was voted on by different groups.

    interface CommentWithVoteInfo {
        id: string;
        text: string;
        topics?: (
            { name: string }
            | { name: string; subtopics: { name: string }[] }
        )[];
        voteInfo: GroupVoteTallies | VoteTally;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    id: string
    text: string
    topics?: ({ name: string } | { name: string; subtopics: { name: string }[] })[]