1 import { Account } from '../actors'
3 export interface VideoComment {
8 inReplyToCommentId: number
10 createdAt: Date | string
11 updatedAt: Date | string
12 deletedAt: Date | string
14 totalRepliesFromVideoAuthor: number
19 export interface VideoCommentAdmin {
25 inReplyToCommentId: number
27 createdAt: Date | string
28 updatedAt: Date | string
39 export interface VideoCommentThreadTree {
41 children: VideoCommentThreadTree[]
44 export interface VideoCommentCreate {