1 import type { CommentThreadState } from './CommentThreadState'
2 import type { CommentPayload } from './CommentPayload'
3 import type { CommentThreadType } from './CommentThreadType'
5 export type CommentThreadPayload = {
10 comments: CommentPayload[]
11 isPlaceholder: boolean
12 state: CommentThreadState
13 type: CommentThreadType