blob: 04496263324ae8f347b4752afa337a3b78ae86ba (
plain) (
tree)
|
|
import { Account } from '../actors'
export interface VideoComment {
id: number
url: string
text: string
threadId: number
inReplyToCommentId: number
videoId: number
createdAt: Date | string
updatedAt: Date | string
deletedAt: Date | string
isDeleted: boolean
totalReplies: number
account: Account
}
export interface VideoCommentThreadTree {
comment: VideoComment
children: VideoCommentThreadTree[]
}
export interface VideoCommentCreate {
text: string
}
|