]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/activitypub/activitypub-ordered-collection.ts
Use a single file instead of segments for HLS
[github/Chocobozzz/PeerTube.git] / shared / models / activitypub / activitypub-ordered-collection.ts
index dfec0bb76fd22a5b8d9050df7c7b6a9d0bd756aa..3de0890bb48f22bbe1e629a46bc2780ae7f18b69 100644 (file)
@@ -2,6 +2,9 @@ export interface ActivityPubOrderedCollection<T> {
   '@context': string[]
   type: 'OrderedCollection' | 'OrderedCollectionPage'
   totalItems: number
-  partOf?: string
   orderedItems: T[]
+
+  partOf?: string
+  next?: string
+  first?: string
 }