aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/redundancy/videos-redundancy.model.ts
blob: 85982e5b320e668b6957b31304d85a14486d8666 (plain) (blame)
1
2
3
4
5
6
export type VideoRedundancyStrategy = 'most-views' | 'trending'

export interface VideosRedundancy {
  strategy: VideoRedundancyStrategy
  size: number
}