2018-08-14 08:59:53 -04:00
|
|
|
import { Actor } from '../../actors/actor.model'
|
|
|
|
import { Video } from '../video.model'
|
|
|
|
import { Account } from '../../actors/index'
|
2017-10-24 13:41:09 -04:00
|
|
|
|
2018-01-11 03:35:50 -05:00
|
|
|
export interface VideoChannel extends Actor {
|
|
|
|
displayName: string
|
2017-10-24 13:41:09 -04:00
|
|
|
description: string
|
2018-02-15 08:46:26 -05:00
|
|
|
support: string
|
2017-10-24 13:41:09 -04:00
|
|
|
isLocal: boolean
|
2018-05-23 05:38:00 -04:00
|
|
|
ownerAccount?: Account
|
2017-10-24 13:41:09 -04:00
|
|
|
}
|