aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/overview/videos-overview.model.ts
blob: 21abe16976296bddd8e40c7d98424a1a5e05be68 (plain) (tree)
1
2
3
4
5
6
                                                                                                                         



                                                             
                                











                                   
                    
 
import { VideoChannelSummary, VideoConstant, VideosOverview as VideosOverviewServer } from '../../../../../shared/models'
import { Video } from '@app/shared/video/video.model'

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

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

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