]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/activitypub/objects/video-comment-object.ts
Update server dependencies
[github/Chocobozzz/PeerTube.git] / shared / models / activitypub / objects / video-comment-object.ts
1 import { ActivityTagObject } from './common-objects'
2
3 export interface VideoCommentObject {
4 type: 'Note'
5 id: string
6
7 content: string
8 mediaType: 'text/markdown'
9
10 inReplyTo: string
11 published: string
12 updated: string
13 url: string
14 attributedTo: string
15 tag: ActivityTagObject[]
16 }