import type { CommentId } from "./CommentId"; /** * Locks a comment and its children, IE prevents new replies. */ export type LockComment = { comment_id: CommentId; locked: boolean; reason: string; };