]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/activitypub/activitypub-ordered-collection.ts
Fix lint momory issues
[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
5 partOf?: string
16b90975 6 orderedItems: T[]
e4f97bab 7}