PeerTube/shared/models/activitypub/objects/video-channel-object.ts

9 lines
190 B
TypeScript

import { ActivityIdentifierObject } from './common-objects'
export interface VideoChannelObject {
type: 'VideoChannel'
name: string
content: string
uuid: ActivityIdentifierObject
}