Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / docs-shared / lib / CommentThreadPayload.ts
blobedf95e43955c2cec348d5202521688837204db5a
1 import type { CommentThreadState } from './CommentThreadState'
2 import type { CommentPayload } from './CommentPayload'
3 import type { CommentThreadType } from './CommentThreadType'
5 export type CommentThreadPayload = {
6   id: string
7   createTime: number
8   modifyTime: number
9   markID: string
10   comments: CommentPayload[]
11   isPlaceholder: boolean
12   state: CommentThreadState
13   type: CommentThreadType