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

export interface VideosRedundancy {
  strategy: VideoRedundancyStrategy
  size: number
}