lemmy-js-client
    Preparing search index...

    Type Alias CommentSlimView

    A slimmer comment view, without the post, or community.

    type CommentSlimView = {
        can_mod: boolean;
        comment: Comment;
        comment_actions?: CommentActions;
        creator: Person;
        creator_banned: boolean;
        creator_banned_from_community: boolean;
        creator_is_admin: boolean;
        creator_is_moderator: boolean;
        person_actions?: PersonActions;
    }
    Index

    Properties

    can_mod: boolean
    comment: Comment
    comment_actions?: CommentActions
    creator: Person
    creator_banned: boolean
    creator_banned_from_community: boolean
    creator_is_admin: boolean
    creator_is_moderator: boolean
    person_actions?: PersonActions