1
0
Fork 0
peertube/shared/models/activitypub/activitypub-ordered-collection.ts

11 lines
223 B
TypeScript
Raw Normal View History

2017-11-23 10:55:13 -05:00
export interface ActivityPubOrderedCollection<T> {
2017-11-09 11:51:58 -05:00
'@context': string[]
type: 'OrderedCollection' | 'OrderedCollectionPage'
totalItems: number
2017-11-23 10:55:13 -05:00
orderedItems: T[]
partOf?: string
next?: string
first?: string
2017-11-09 11:51:58 -05:00
}