blob: 8c87857634c6ed6588e3eaa76783a1ed0060ffd1 (
plain) (
tree)
|
|
import { Video, VideoChannelAttribute, VideoConstant } from '../videos'
export interface VideosOverview {
channels: {
channel: VideoChannelAttribute
videos: Video[]
}[]
categories: {
category: VideoConstant<number>
videos: Video[]
}[]
tags: {
tag: string
videos: Video[]
}[]
[key: string]: any
}
|