1 export type VideoRedundancyStrategy = 'most-views' | 'trending' | 'recently-added'
2 export type VideoRedundancyStrategyWithManual = VideoRedundancyStrategy | 'manual'
4 export type MostViewsRedundancyStrategy = {
10 export type TrendingRedundancyStrategy = {
16 export type RecentlyAddedStrategy = {
17 strategy: 'recently-added'
23 export type VideosRedundancyStrategy = MostViewsRedundancyStrategy | TrendingRedundancyStrategy | RecentlyAddedStrategy