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

12 lines
288 B
TypeScript

import { Actor } from '../../actors/actor.model'
import { Video } from '../video.model'
import { Account } from '../../actors/index'
export interface VideoChannel extends Actor {
displayName: string
description: string
support: string
isLocal: boolean
ownerAccount?: Account
}