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

9 lines
190 B
TypeScript
Raw Normal View History

2017-11-09 17:51:58 +01:00
import { ActivityIdentifierObject } from './common-objects'
export interface VideoChannelObject {
type: 'VideoChannel'
name: string
content: string
uuid: ActivityIdentifierObject
}