diff options
Diffstat (limited to 'shared/models/activitypub/activitypub-root.ts')
-rw-r--r-- | shared/models/activitypub/activitypub-root.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/shared/models/activitypub/activitypub-root.ts b/shared/models/activitypub/activitypub-root.ts new file mode 100644 index 000000000..6a67f3101 --- /dev/null +++ b/shared/models/activitypub/activitypub-root.ts | |||
@@ -0,0 +1,5 @@ | |||
1 | import { Activity } from './activity' | ||
2 | import { ActivityPubCollection } from './activitypub-collection' | ||
3 | import { ActivityPubOrderedCollection } from './activitypub-ordered-collection' | ||
4 | |||
5 | export type RootActivity = Activity | ActivityPubCollection | ActivityPubOrderedCollection | ||