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

11 lines
175 B
TypeScript
Raw Normal View History

2017-11-09 17:51:58 +01:00
export interface VideoChannelObject {
type: 'VideoChannel'
2017-11-10 14:34:45 +01:00
id: string
2017-11-09 17:51:58 +01:00
name: string
content: string
2017-11-10 14:34:45 +01:00
uuid: string
published: Date
updated: Date
2017-11-15 17:56:21 +01:00
actor?: string
2017-11-09 17:51:58 +01:00
}