import type { CommentId } from "./CommentId"; /** * Delete your own comment. */ export type DeleteComment = { comment_id: CommentId; deleted: boolean; };