aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/overviews/videos-overview.ts
blob: ee009d94c7fac8d395ed15299ae18b50add1e4a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { Video, VideoChannelAttribute, VideoConstant } from '../videos'

export interface VideosOverview {
  channels: {
    channel: VideoChannelAttribute
    videos: Video[]
  }[]

  categories: {
    category: VideoConstant<number>
    videos: Video[]
  }[]

  tags: {
    tag: string
    videos: Video[]
  }[]
}