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

7 lines
154 B
TypeScript
Raw Normal View History

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