1234567891011121314151617181920212223 |
- 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
- totalReplies: number
- account: Account
- }
- export interface VideoCommentThreadTree {
- comment: VideoComment
- children: VideoCommentThreadTree[]
- }
- export interface VideoCommentCreate {
- text: string
- }
|