lemmy-js-client
    Preparing search index...

    Type Alias CreateCommentLike

    Like a comment.

    type CreateCommentLike = {
        comment_id: CommentId;
        is_upvote?: boolean;
    }
    Index

    Properties

    comment_id: CommentId
    is_upvote?: boolean

    True means Upvote, False means Downvote, and None means remove vote.