mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 10:19:35 +02:00
13 lines
309 B
TypeScript
13 lines
309 B
TypeScript
import { ActivityPubOrderedCollection } from '../activitypub-ordered-collection'
|
|
|
|
export interface VideoChannelObject {
|
|
type: 'VideoChannel'
|
|
id: string
|
|
name: string
|
|
content: string
|
|
uuid: string
|
|
published: string
|
|
updated: string
|
|
actor?: string
|
|
shares?: ActivityPubOrderedCollection<string>
|
|
}
|