1 2 3 4 5 6 7 8 9 10 11 12 13
import { Actor } from '../actors/actor.model' import { Video } from './video.model' export interface VideoChannel extends Actor { displayName: string description: string support: string isLocal: boolean ownerAccount?: { id: number uuid: string } }