CupThread React Native & Expo SDK - v0.1.0
    Preparing search index...

    Interface VoteResult

    Result returned after toggling an upvote on a feature request.

    const voteResult: VoteResult = {
    voted: true,
    voteCount: 15,
    };
    interface VoteResult {
        voteCount: number;
        voted: boolean;
    }
    Index
    voteCount: number

    Updated total vote count for the feature request.

    voted: boolean

    True if the vote was added; false if previously active vote was removed.