]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/activitypub/activitypub-ordered-collection.ts
Update server dependencies
[github/Chocobozzz/PeerTube.git] / shared / models / activitypub / activitypub-ordered-collection.ts
CommitLineData
16b90975 1export interface ActivityPubOrderedCollection<T> {
e4f97bab
C
2 '@context': string[]
3 type: 'OrderedCollection' | 'OrderedCollectionPage'
4 totalItems: number
16b90975 5 orderedItems: T[]
4c280004
C
6
7 partOf?: string
8 next?: string
9 first?: string
e4f97bab 10}