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