import type { PostId } from "./PostId"; /** * Mark a post as read. */ export type MarkPostAsRead = { post_id: PostId; read: boolean; };