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

23 lines
392 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
2017-12-22 11:10:40 +00:00
account: {
name: string
}
2017-12-22 09:50:07 +00:00
}
2017-12-22 11:10:40 +00:00
export interface VideoCommentThreadTree {
2017-12-22 09:50:07 +00:00
comment: VideoComment
2017-12-22 11:10:40 +00:00
children: VideoCommentThreadTree[]
2017-12-22 09:50:07 +00:00
}
export interface VideoCommentCreate {
text: string
}