Remove uneccessary details to link titles
[oweals/peertube.git] / server / typings / models / video / video-caption.ts
1 import { VideoCaptionModel } from '../../../models/video/video-caption'
2 import { FunctionProperties, PickWith } from '@server/typings/utils'
3 import { MVideo, MVideoUUID } from './video'
4
5 type Use<K extends keyof VideoCaptionModel, M> = PickWith<VideoCaptionModel, K, M>
6
7 // ############################################################################
8
9 export type MVideoCaption = Omit<VideoCaptionModel, 'Video'>
10
11 // ############################################################################
12
13 export type MVideoCaptionLanguage = Pick<MVideoCaption, 'language'>
14 export type MVideoCaptionLanguageUrl = Pick<MVideoCaption, 'language' | 'fileUrl' | 'getFileUrl'>
15
16 export type MVideoCaptionVideo =
17   MVideoCaption &
18   Use<'Video', Pick<MVideo, 'id' | 'remote' | 'uuid'>>
19
20 // ############################################################################
21
22 // Format for API or AP object
23
24 export type MVideoCaptionFormattable =
25   FunctionProperties<MVideoCaption> &
26   Pick<MVideoCaption, 'language'> &
27   Use<'Video', MVideoUUID>