import { type CommentItem } from '@/types/forum/comment'; // 댓글 목록 export default interface CommentListResponse { total: number; list: CommentItem[]; }