repo.or.cz
/
ProtonMail-WebClient.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git]
/
packages
/
docs-shared
/
lib
/
CommentPayload.ts
blob
defae24521bbd3146fcfb004e9adb9802b050156
1
import type { CommentType } from './CommentType'
2
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
13
}