aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/activitypub/objects/video-comment-object.ts
blob: fc2a9e83709cff15e9fbf61a4113bc5b1d3f73c5 (plain) (blame)
1
2
3
4
5
6
7
8
export interface VideoCommentObject {
  type: 'Note'
  id: string
  content: string
  inReplyTo: string
  published: string
  url: string
}