blob: bb10f6da58dbbf0e12f848ee7a8ec25af77d1548 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
import { Account, ActorImage } from '../../actors/index.js'
import { Actor } from '../../actors/actor.model.js'
export type ViewsPerDate = {
date: Date
views: number
}
export interface VideoChannel extends Actor {
displayName: string
description: string
support: string
isLocal: boolean
updatedAt: Date | string
ownerAccount?: Account
videosCount?: number
viewsPerDay?: ViewsPerDate[] // chronologically ordered
totalViews?: number
banners: ActorImage[]
}
export interface VideoChannelSummary {
id: number
name: string
displayName: string
url: string
host: string
avatars: ActorImage[]
}
|