import type { PostId } from "./PostId"; /** * Creates a warning against a post and notifies the user. */ export type CreatePostWarning = { post_id: PostId; reason: string; };