7 lines
141 B
TypeScript
7 lines
141 B
TypeScript
|
export type VideoRedundancyStrategy = 'most-views'
|
||
|
|
||
|
export interface VideosRedundancy {
|
||
|
strategy: VideoRedundancyStrategy
|
||
|
size: number
|
||
|
}
|