mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-16 18:25:09 -06:00
10 lines
204 B
TypeScript
10 lines
204 B
TypeScript
import { Activity } from './activity'
|
|
|
|
export interface ActivityPubCollection {
|
|
'@context': string[]
|
|
type: 'Collection' | 'CollectionPage'
|
|
totalItems: number
|
|
partOf?: string
|
|
items: Activity[]
|
|
}
|