lemmy-js-client/src/types/HidePost.ts
Nutomic efffc3c6e8
Instance blocks with mod log entry and expiration (#409)
* Instance blocks with mod log entry and expiration

* 0.20.0-instance-blocks.0

* fix methods

* 0.20.0-instance-blocks.1

* remove params

* 0.20.0-instance-blocks.2

* pass domain

* 0.20.0-instance-blocks.3

* add file

* 0.20.0-instance-blocks.4

* pass instance domain

* 0.20.0-instance-blocks.5
2024-12-02 17:26:30 -05:00

7 lines
248 B
TypeScript

// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { PostId } from "./PostId";
/**
* Hide a post from list views
*/
export type HidePost = { post_id: PostId; hide: boolean };