lemmy-js-client
    Preparing search index...

    Type Alias RemoveComment

    Remove a comment (only doable by mods).

    type RemoveComment = {
        comment_id: CommentId;
        reason: string;
        remove_children?: boolean;
        removed: boolean;
    }
    Index

    Properties

    comment_id: CommentId
    reason: string
    remove_children?: boolean

    Setting this will override whatever removed was set to, leave as null or unset to act just on the comment itself.

    removed: boolean