aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/activitypub/objects/video-channel-object.ts
blob: dcce8696b6ab6a6deb3bc6c60051f6e0f2efd353 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { ActivityPubOrderedCollection } from '../activitypub-ordered-collection'

export interface VideoChannelObject {
  type: 'VideoChannel'
  id: string
  name: string
  content: string
  uuid: string
  published: string
  updated: string
  actor?: string
  shares?: ActivityPubOrderedCollection<string>
}