]>
Commit | Line | Data |
---|---|---|
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 | } |