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.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/shared/models/activitypub/activitypub-ordered-collection.ts b/shared/models/activitypub/activitypub-ordered-collection.ts
index dfec0bb76..3de0890bb 100644
--- a/shared/models/activitypub/activitypub-ordered-collection.ts
+++ b/shared/models/activitypub/activitypub-ordered-collection.ts
@@ -2,6 +2,9 @@ export interface ActivityPubOrderedCollection<T> {
2 '@context': string[] 2 '@context': string[]
3 type: 'OrderedCollection' | 'OrderedCollectionPage' 3 type: 'OrderedCollection' | 'OrderedCollectionPage'
4 totalItems: number 4 totalItems: number
5 partOf?: string
6 orderedItems: T[] 5 orderedItems: T[]
6
7 partOf?: string
8 next?: string
9 first?: string
7} 10}