1
0
Fork 0
peertube/shared/models/videos/video-comment.model.ts

20 lines
350 B
TypeScript
Raw Normal View History

2017-12-22 09:50:07 +00:00
export interface VideoComment {
id: number
url: string
text: string
threadId: number
inReplyToCommentId: number
videoId: number
createdAt: Date | string
updatedAt: Date | string
}
export interface VideoCommentThread {
comment: VideoComment
children: VideoCommentThread[]
}
export interface VideoCommentCreate {
text: string
}