aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+videos/video-list/overview/videos-overview.model.ts
blob: 6765ad9b77181066942607693a764309b6cc7727 (plain) (tree)
1
2
3
4
5
6

                                                                                                           


                                                             
                                











                                   
                    
 
import { Video } from '@app/shared/shared-main'
import { VideoChannelSummary, VideoConstant, VideosOverview as VideosOverviewServer } from '@shared/models'

export class VideosOverview implements VideosOverviewServer {
  channels: {
    channel: VideoChannelSummary
    videos: Video[]
  }[]

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

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