]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - shared/models/activitypub/activitypub-ordered-collection.ts
Merge branch 'release/4.2.0' into develop
[github/Chocobozzz/PeerTube.git] / shared / models / activitypub / activitypub-ordered-collection.ts
... / ...
CommitLineData
1export 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}