]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/overview/videos-overview.model.ts
Add client hooks
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / overview / videos-overview.model.ts
CommitLineData
9c6ca37f 1import { VideoChannelSummary, VideoConstant, VideosOverview as VideosOverviewServer } from '../../../../../shared/models'
2d3741d6
C
2import { Video } from '@app/shared/video/video.model'
3
4export class VideosOverview implements VideosOverviewServer {
5 channels: {
9c6ca37f 6 channel: VideoChannelSummary
2d3741d6
C
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 }[]
244b4ae3 19 [key: string]: any
2d3741d6 20}