1 import { ResultList } from '../../common'
2 import { Account } from '../../actors'
4 export interface VideoComment {
9 inReplyToCommentId: number
11 createdAt: Date | string
12 updatedAt: Date | string
13 deletedAt: Date | string
15 totalRepliesFromVideoAuthor: number
20 export interface VideoCommentAdmin {
26 inReplyToCommentId: number
28 createdAt: Date | string
29 updatedAt: Date | string
40 export type VideoCommentThreads = ResultList<VideoComment> & { totalNotDeletedComments: number }
42 export interface VideoCommentThreadTree {
44 children: VideoCommentThreadTree[]