diff options
Diffstat (limited to 'shared/models/activitypub/activitypub-ordered-collection.ts')
-rw-r--r-- | shared/models/activitypub/activitypub-ordered-collection.ts | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/shared/models/activitypub/activitypub-ordered-collection.ts b/shared/models/activitypub/activitypub-ordered-collection.ts deleted file mode 100644 index 3de0890bb..000000000 --- a/shared/models/activitypub/activitypub-ordered-collection.ts +++ /dev/null | |||
@@ -1,10 +0,0 @@ | |||
1 | export interface ActivityPubOrderedCollection<T> { | ||
2 | '@context': string[] | ||
3 | type: 'OrderedCollection' | 'OrderedCollectionPage' | ||
4 | totalItems: number | ||
5 | orderedItems: T[] | ||
6 | |||
7 | partOf?: string | ||
8 | next?: string | ||
9 | first?: string | ||
10 | } | ||