1
0
Fork 0
peertube/shared/models/activitypub/objects/video-channel-object.ts

11 lines
179 B
TypeScript
Raw Normal View History

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