]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/redundancy/videos-redundancy.model.ts
Add trending videos strategy
[github/Chocobozzz/PeerTube.git] / shared / models / redundancy / videos-redundancy.model.ts
1 export type VideoRedundancyStrategy = 'most-views' | 'trending'
2
3 export interface VideosRedundancy {
4 strategy: VideoRedundancyStrategy
5 size: number
6 }