2019-02-26 10:55:40 +01:00
|
|
|
import { Video, VideoChannelSummary, VideoConstant } from '../videos'
|
2018-08-30 14:58:00 +02:00
|
|
|
|
2020-03-11 14:39:28 +01: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 14:58:00 +02:00
|
|
|
export interface VideosOverview {
|
2020-03-11 14:39:28 +01:00
|
|
|
channels: ChannelOverview[]
|
2018-08-30 14:58:00 +02:00
|
|
|
|
2020-03-11 14:39:28 +01:00
|
|
|
categories: CategoryOverview[]
|
2018-08-30 14:58:00 +02:00
|
|
|
|
2020-03-11 14:39:28 +01:00
|
|
|
tags: TagOverview[]
|
2018-08-30 14:58:00 +02:00
|
|
|
}
|