video-comment-object.ts 262 B

12345678910111213
  1. import { ActivityTagObject } from './common-objects'
  2. export interface VideoCommentObject {
  3. type: 'Note'
  4. id: string
  5. content: string
  6. inReplyTo: string
  7. published: string
  8. updated: string
  9. url: string
  10. attributedTo: string
  11. tag: ActivityTagObject[]
  12. }