2018-09-14 05:05:38 -04:00
|
|
|
export type VideoRedundancyStrategy = 'most-views' | 'trending' | 'recently-added'
|
2020-01-10 04:11:28 -05:00
|
|
|
export type VideoRedundancyStrategyWithManual = VideoRedundancyStrategy | 'manual'
|
2018-09-11 10:27:07 -04:00
|
|
|
|
2018-09-14 05:05:38 -04:00
|
|
|
export type MostViewsRedundancyStrategy = {
|
|
|
|
strategy: 'most-views'
|
2018-09-11 10:27:07 -04:00
|
|
|
size: number
|
2018-09-24 07:07:33 -04:00
|
|
|
minLifetime: number
|
2018-09-11 10:27:07 -04:00
|
|
|
}
|
2018-09-14 05:05:38 -04:00
|
|
|
|
|
|
|
export type TrendingRedundancyStrategy = {
|
|
|
|
strategy: 'trending'
|
|
|
|
size: number
|
2018-09-24 07:07:33 -04:00
|
|
|
minLifetime: number
|
2018-09-14 05:05:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export type RecentlyAddedStrategy = {
|
|
|
|
strategy: 'recently-added'
|
|
|
|
size: number
|
|
|
|
minViews: number
|
2018-09-24 07:07:33 -04:00
|
|
|
minLifetime: number
|
2018-09-14 05:05:38 -04:00
|
|
|
}
|
|
|
|
|
2020-01-10 04:11:28 -05:00
|
|
|
export type VideosRedundancyStrategy = MostViewsRedundancyStrategy | TrendingRedundancyStrategy | RecentlyAddedStrategy
|