diff options
Diffstat (limited to 'shared/models/activitypub/objects/activitypub-object.ts')
-rw-r--r-- | shared/models/activitypub/objects/activitypub-object.ts | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/shared/models/activitypub/objects/activitypub-object.ts b/shared/models/activitypub/objects/activitypub-object.ts deleted file mode 100644 index faeac2618..000000000 --- a/shared/models/activitypub/objects/activitypub-object.ts +++ /dev/null | |||
@@ -1,17 +0,0 @@ | |||
1 | import { AbuseObject } from './abuse-object' | ||
2 | import { CacheFileObject } from './cache-file-object' | ||
3 | import { PlaylistObject } from './playlist-object' | ||
4 | import { VideoCommentObject } from './video-comment-object' | ||
5 | import { VideoObject } from './video-object' | ||
6 | import { WatchActionObject } from './watch-action-object' | ||
7 | |||
8 | export type ActivityObject = | ||
9 | VideoObject | | ||
10 | AbuseObject | | ||
11 | VideoCommentObject | | ||
12 | CacheFileObject | | ||
13 | PlaylistObject | | ||
14 | WatchActionObject | | ||
15 | string | ||
16 | |||
17 | export type APObjectId = string | { id: string } | ||