mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 10:19:35 +02:00
18 lines
316 B
TypeScript
18 lines
316 B
TypeScript
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[]
|
|
}[]
|
|
}
|