]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/overviews/videos-overview.ts
Better use of space and icons in plugins administration interface
[github/Chocobozzz/PeerTube.git] / shared / models / overviews / videos-overview.ts
CommitLineData
418d092a 1import { Video, VideoChannelSummary, VideoConstant } from '../videos'
2d3741d6
C
2
3export interface VideosOverview {
4 channels: {
418d092a 5 channel: VideoChannelSummary
2d3741d6
C
6 videos: Video[]
7 }[]
8
9 categories: {
10 category: VideoConstant<number>
11 videos: Video[]
12 }[]
13
14 tags: {
15 tag: string
16 videos: Video[]
17 }[]
18}