import type { PostId } from "./PostId"; /** * Delete a post. */ export type DeletePost = { post_id: PostId; deleted: boolean; };