Save
[oweals/peertube.git] / shared / models / activitypub / objects / video-channel-object.ts
1 import { ActivityPubOrderedCollection } from '../activitypub-ordered-collection'
2
3 export interface VideoChannelObject {
4   type: 'VideoChannel'
5   id: string
6   name: string
7   content: string
8   uuid: string
9   published: string
10   updated: string
11   actor?: string
12   shares?: ActivityPubOrderedCollection<string>
13 }