PeerTube_original/shared/models/redundancy/videos-redundancy.model.ts
2018-09-14 09:57:21 +02:00

7 lines
154 B
TypeScript

export type VideoRedundancyStrategy = 'most-views' | 'trending'
export interface VideosRedundancy {
strategy: VideoRedundancyStrategy
size: number
}