Stronger model typings
[oweals/peertube.git] / server / typings / models / video / video-caption.ts
1 import { VideoCaptionModel } from '../../../models/video/video-caption'
2 import { PickWith } from '@server/typings/utils'
3 import { VideoModel } from '@server/models/video/video'
4
5 export type MVideoCaption = Omit<VideoCaptionModel, 'Video'>
6
7 export type MVideoCaptionLanguage = Pick<MVideoCaption, 'language'>
8
9 export type MVideoCaptionVideo = MVideoCaption &
10   PickWith<VideoCaptionModel, 'Video', Pick<VideoModel, 'id' | 'remote' | 'uuid'>>