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

12 lines
219 B
TypeScript

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