lemmy-js-client
    Preparing search index...

    Type Alias RemovePost

    Remove a post (only doable by mods).

    type RemovePost = {
        post_id: PostId;
        reason: string;
        remove_children?: boolean;
        removed: boolean;
    }
    Index

    Properties

    post_id

    post_id: PostId
    reason: string
    remove_children?: boolean

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

    removed: boolean