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