import { VideoRedundancyModel } from '../../../models/redundancy/video-redundancy' import { PickWith } from '@server/typings/utils' import { MStreamingPlaylistVideo, MVideoFile, MVideoFileVideo } from '@server/typings/models' export type MVideoRedundancy = Omit export type MVideoRedundancyFileUrl = Pick export type MVideoRedundancyFile = MVideoRedundancy & PickWith export type MVideoRedundancyFileVideo = MVideoRedundancy & PickWith export type MVideoRedundancyStreamingPlaylistVideo = MVideoRedundancy & PickWith export type MVideoRedundancyVideo = MVideoRedundancyFileVideo | MVideoRedundancyStreamingPlaylistVideo