aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/activitypub/objects/video-channel-object.ts
blob: 468e1535ea04e7c7118156ffc45c31ca31d773f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export interface VideoChannelObject {
  type: 'VideoChannel'
  id: string
  name: string
  content: string
  uuid: string
  published: Date
  updated: Date
  actor?: string
}