]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/activitypub/activitypub-ordered-collection.ts
Fix communication with mastodon
[github/Chocobozzz/PeerTube.git] / shared / models / activitypub / activitypub-ordered-collection.ts
1 import { Activity } from './activity'
2
3 export interface ActivityPubOrderedCollection<T> {
4 '@context': string[]
5 type: 'OrderedCollection' | 'OrderedCollectionPage'
6 totalItems: number
7 partOf?: string
8 orderedItems: T[]
9 }