import { CommentReply } from "./CommentReply"; export type Comment = { commentId: string; content: string; replies?: CommentReply[]; postId: string; userId: string; commentLikesCount: number; createdAt: any; active: boolean; };