aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/activitypub/activitypub-ordered-collection.ts
blob: 4080fd740e10b6620ebefd0ecf25536f4ac8a8b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { Activity } from './activity'

export interface ActivityPubOrderedCollection {
  '@context': string[]
  type: 'OrderedCollection' | 'OrderedCollectionPage'
  totalItems: number
  partOf?: string
  orderedItems: Activity[]
}