import { VideoShareModel } from '../../../models/video/video-share' import { PickWith } from '../../utils' import { MActorDefault } from '../account' import { MVideo } from './video' type Use = PickWith // ############################################################################ export type MVideoShare = Omit export type MVideoShareActor = MVideoShare & Use<'Actor', MActorDefault> export type MVideoShareFull = MVideoShare & Use<'Actor', MActorDefault> & Use<'Video', MVideo>