aboutsummaryrefslogblamecommitdiffhomepage
path: root/shared/models/overviews/videos-overview.ts
blob: e725f166bbce01485ac05572c77b063c8bf91ffd (plain) (tree)
1
2
3
4
5
                                                                     


                                 
                                












                                   
import { Video, VideoChannelSummary, VideoConstant } from '../videos'

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

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

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