mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 18:29:27 +02:00
18 lines
312 B
TypeScript
18 lines
312 B
TypeScript
import { Video, VideoChannelSummary, VideoConstant } from '../videos'
|
|
|
|
export interface VideosOverview {
|
|
channels: {
|
|
channel: VideoChannelSummary
|
|
videos: Video[]
|
|
}[]
|
|
|
|
categories: {
|
|
category: VideoConstant<number>
|
|
videos: Video[]
|
|
}[]
|
|
|
|
tags: {
|
|
tag: string
|
|
videos: Video[]
|
|
}[]
|
|
}
|