import { VideoImportModel } from '@server/models/video/video-import' import { PickWith } from '@server/typings/utils' import { MUser, MVideo, MVideoAccountLight, MVideoTag, MVideoThumbnail, MVideoWithFile } from '@server/typings/models' export type MVideoImport = Omit export type MVideoImportDefault = MVideoImport & PickWith & PickWith export type MVideoImportDefaultFiles = MVideoImportDefault & PickWith export type MVideoImportVideo = MVideoImport & PickWith