aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/activitypub/activitypub-ordered-collection.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/activitypub/activitypub-ordered-collection.ts')
-rw-r--r--shared/models/activitypub/activitypub-ordered-collection.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/shared/models/activitypub/activitypub-ordered-collection.ts b/shared/models/activitypub/activitypub-ordered-collection.ts
new file mode 100644
index 000000000..4080fd740
--- /dev/null
+++ b/shared/models/activitypub/activitypub-ordered-collection.ts
@@ -0,0 +1,9 @@
1import { Activity } from './activity'
2
3export interface ActivityPubOrderedCollection {
4 '@context': string[]
5 type: 'OrderedCollection' | 'OrderedCollectionPage'
6 totalItems: number
7 partOf?: string
8 orderedItems: Activity[]
9}