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

11 lines
175 B
TypeScript

export interface VideoChannelObject {
type: 'VideoChannel'
id: string
name: string
content: string
uuid: string
published: Date
updated: Date
actor?: string
}