Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / docs-shared / lib / CommentPayload.ts
blobdefae24521bbd3146fcfb004e9adb9802b050156
1 import type { CommentType } from './CommentType'
3 export type CommentPayload = {
4   id: string
5   createTime: number
6   modifyTime: number
7   content: string
8   parentCommentID: string | null
9   author: string | undefined
10   comments: CommentPayload[]
11   isPlaceholder: boolean
12   type: CommentType