PeerTube/shared/models/redundancy/videos-redundancy.model.ts

7 lines
154 B
TypeScript
Raw Normal View History

2018-09-14 09:57:21 +02:00
export type VideoRedundancyStrategy = 'most-views' | 'trending'
2018-09-11 16:27:07 +02:00
export interface VideosRedundancy {
strategy: VideoRedundancyStrategy
size: number
}