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

14 lines
269 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'
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-04-25 08:21:38 +00:00
ownerAccount?: {
id: number
2017-10-24 17:41:09 +00:00
uuid: string
}
}