PeerTube/server/types/models/video/video-share.ts

20 lines
603 B
TypeScript

import { PickWith } from '@shared/typescript-utils'
import { VideoShareModel } from '../../../models/video/video-share'
import { MActorDefault } from '../actor'
import { MVideo } from './video'
type Use<K extends keyof VideoShareModel, M> = PickWith<VideoShareModel, K, M>
// ############################################################################
export type MVideoShare = Omit<VideoShareModel, 'Actor' | 'Video'>
export type MVideoShareActor =
MVideoShare &
Use<'Actor', MActorDefault>
export type MVideoShareFull =
MVideoShare &
Use<'Actor', MActorDefault> &
Use<'Video', MVideo>