blob: 60a6a6b04704e3becde1be2cd13cf50ff5501a1b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { Activity } from './activity'
export interface ActivityPubCollection {
'@context': string[]
type: 'Collection' | 'CollectionPage'
totalItems: number
partOf?: string
items: Activity[]
}
|