import type { PostId } from "./PostId"; /** * Hide a post from list views */ export type HidePost = { post_id: PostId; hide: boolean; };