import { VideoFileModel } from '../../../models/video/video-file' import { PickWith, PickWithOpt } from '../../utils' import { MVideo, MVideoUUID } from './video' import { MVideoRedundancyFileUrl } from './video-redundancy' type Use = PickWith // ############################################################################ export type MVideoFile = Omit export type MVideoFileVideo = MVideoFile & Use<'Video', MVideo> export type MVideoFileVideoUUID = MVideoFile & Use<'Video', MVideoUUID> export type MVideoFileRedundanciesOpt = MVideoFile & PickWithOpt