2019-02-26 04:55:40 -05:00
|
|
|
import { Video, VideoChannelSummary, VideoConstant } from '../videos'
|
2018-08-30 08:58:00 -04:00
|
|
|
|
2020-03-11 09:39:28 -04:00
|
|
|
export interface ChannelOverview {
|
|
|
|
channel: VideoChannelSummary
|
|
|
|
videos: Video[]
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface CategoryOverview {
|
|
|
|
category: VideoConstant<number>
|
|
|
|
videos: Video[]
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface TagOverview {
|
|
|
|
tag: string
|
|
|
|
videos: Video[]
|
|
|
|
}
|
|
|
|
|
2018-08-30 08:58:00 -04:00
|
|
|
export interface VideosOverview {
|
2020-03-11 09:39:28 -04:00
|
|
|
channels: ChannelOverview[]
|
2018-08-30 08:58:00 -04:00
|
|
|
|
2020-03-11 09:39:28 -04:00
|
|
|
categories: CategoryOverview[]
|
2018-08-30 08:58:00 -04:00
|
|
|
|
2020-03-11 09:39:28 -04:00
|
|
|
tags: TagOverview[]
|
2018-08-30 08:58:00 -04:00
|
|
|
}
|