]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/channel/video-channel.model.ts
Playlist server API
[github/Chocobozzz/PeerTube.git] / shared / models / videos / channel / video-channel.model.ts
CommitLineData
59c76ffa 1import { Actor } from '../../actors/actor.model'
59c76ffa 2import { Account } from '../../actors/index'
418d092a 3import { Avatar } from '../../avatars'
72c7248b 4
60650c77
C
5export interface VideoChannel extends Actor {
6 displayName: string
72c7248b 7 description: string
2422c46b 8 support: string
72c7248b 9 isLocal: boolean
a4f99a76 10 ownerAccount?: Account
72c7248b 11}
418d092a
C
12
13export interface VideoChannelSummary {
14 id: number
15 uuid: string
16 name: string
17 displayName: string
18 url: string
19 host: string
20 avatar?: Avatar
21}