aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/activitypub/objects/video-channel-object.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/activitypub/objects/video-channel-object.ts')
-rw-r--r--shared/models/activitypub/objects/video-channel-object.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/shared/models/activitypub/objects/video-channel-object.ts b/shared/models/activitypub/objects/video-channel-object.ts
deleted file mode 100644
index dcce8696b..000000000
--- a/shared/models/activitypub/objects/video-channel-object.ts
+++ /dev/null
@@ -1,13 +0,0 @@
1import { ActivityPubOrderedCollection } from '../activitypub-ordered-collection'
2
3export 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}