lemmy-js-client
    Preparing search index...

    Type Alias CommentReportView

    A comment report view.

    type CommentReportView = {
        comment: Comment;
        comment_actions?: CommentActions;
        comment_creator: Person;
        comment_report: CommentReport;
        community: Community;
        community_actions?: CommunityActions;
        creator: Person;
        creator_banned: boolean;
        creator_banned_from_community: boolean;
        creator_is_admin: boolean;
        creator_is_moderator: boolean;
        person_actions?: PersonActions;
        post: Post;
        resolver?: Person;
    }
    Index

    Properties

    comment: Comment
    comment_actions?: CommentActions
    comment_creator: Person
    comment_report: CommentReport
    community: Community
    community_actions?: CommunityActions
    creator: Person
    creator_banned: boolean
    creator_banned_from_community: boolean
    creator_is_admin: boolean
    creator_is_moderator: boolean
    person_actions?: PersonActions

    post

    post: Post
    resolver?: Person