1 import type { ServerTime } from './ServerTime'
2 import type { CommentPayload } from './CommentPayload'
3 import type { CommentType } from './CommentType'
5 export interface CommentInterface {
10 parentCommentID: string | null
11 author: string | undefined
12 comments: CommentInterface[]
13 isPlaceholder: boolean
16 asPayload(): CommentPayload