blob: d572927c27f414ba0d17299c7c11211cc6250dae (
plain) (
tree)
|
|
export interface VideoComment {
id: number
url: string
text: string
threadId: number
inReplyToCommentId: number
videoId: number
createdAt: Date | string
updatedAt: Date | string
totalReplies: number
account: {
name: string
host: string
}
}
export interface VideoCommentThreadTree {
comment: VideoComment
children: VideoCommentThreadTree[]
}
export interface VideoCommentCreate {
text: string
}
|