PeerTube/shared/models/redundancy/videos-redundancy.model.ts

7 lines
154 B
TypeScript

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