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

10 lines
158 B
TypeScript
Raw Normal View History

2017-11-09 10:51:58 -06:00
export interface VideoChannelObject {
type: 'VideoChannel'
2017-11-10 07:34:45 -06:00
id: string
2017-11-09 10:51:58 -06:00
name: string
content: string
2017-11-10 07:34:45 -06:00
uuid: string
published: Date
updated: Date
2017-11-09 10:51:58 -06:00
}