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

12 lines
275 B
TypeScript
Raw Normal View History

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