MCPcopy Create free account
hub / github.com/R44VC0RP/opencode.cafe / CommentData

Interface CommentData

components/comments/comment-card.tsx:12–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10import { CommentForm } from "./comment-form"
11
12interface CommentData {
13 _id: Id<"comments">
14 content: string
15 author: {
16 userId: string
17 name: string
18 }
19 isDeleted?: boolean
20 createdAt: number
21 likeCount: number
22 replies?: CommentData[]
23}
24
25interface CommentCardProps {
26 comment: CommentData

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected