PeerTube/shared/models/videos/channel/video-channel.model.ts

12 lines
288 B
TypeScript
Raw Normal View History

2018-08-14 14:59:53 +02:00
import { Actor } from '../../actors/actor.model'
import { Video } from '../video.model'
import { Account } from '../../actors/index'
2017-10-24 19:41:09 +02:00
export interface VideoChannel extends Actor {
displayName: string
2017-10-24 19:41:09 +02:00
description: string
support: string
2017-10-24 19:41:09 +02:00
isLocal: boolean
2018-05-23 11:38:00 +02:00
ownerAccount?: Account
2017-10-24 19:41:09 +02:00
}