]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - activitypub-ordered-collection.ts
3de0890bb48f22bbe1e629a46bc2780ae7f18b69
[github/Chocobozzz/PeerTube.git] / activitypub-ordered-collection.ts
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 }