import { VideoBlacklistModel } from '../../../models/video/video-blacklist' import { PickWith } from '@server/typings/utils' import { MVideo } from '@server/typings/models' type Use = PickWith // ############################################################################ export type MVideoBlacklist = Omit export type MVideoBlacklistLight = Pick export type MVideoBlacklistUnfederated = Pick // ############################################################################ export type MVideoBlacklistVideo = MVideoBlacklist & Use<'Video', MVideo>