]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/overview/videos-overview.model.ts
Rename streaming playlists routes/directories
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / overview / videos-overview.model.ts
1 import { VideoChannelSummary, VideoConstant, VideosOverview as VideosOverviewServer } from '../../../../../shared/models'
2 import { Video } from '@app/shared/video/video.model'
3
4 export class VideosOverview implements VideosOverviewServer {
5 channels: {
6 channel: VideoChannelSummary
7 videos: Video[]
8 }[]
9
10 categories: {
11 category: VideoConstant<number>
12 videos: Video[]
13 }[]
14
15 tags: {
16 tag: string
17 videos: Video[]
18 }[]
19 [key: string]: any
20 }