blob: de4c26b3dd5236cdcd9e116c2bfc30a53d316f95 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import { Actor } from '../../actors/actor.model'
import { Account } from '../../actors/index'
import { Avatar } from '../../avatars'
export interface VideoChannel extends Actor {
displayName: string
description: string
support: string
isLocal: boolean
ownerAccount?: Account
}
export interface VideoChannelSummary {
id: number
name: string
displayName: string
url: string
host: string
avatar?: Avatar
}
|