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