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 full)

Properties

Properties

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