2019-08-15 04:53:26 -05:00
|
|
|
import { VideoCaptionModel } from '../../../models/video/video-caption'
|
2019-08-20 12:05:31 -05:00
|
|
|
import { FunctionProperties, PickWith } from '@server/typings/utils'
|
2019-11-15 08:06:03 -06:00
|
|
|
import { MVideo, MVideoUUID } from './video'
|
2019-08-15 04:53:26 -05:00
|
|
|
|
2019-08-20 06:52:49 -05:00
|
|
|
type Use<K extends keyof VideoCaptionModel, M> = PickWith<VideoCaptionModel, K, M>
|
|
|
|
|
|
|
|
// ############################################################################
|
|
|
|
|
2019-08-15 04:53:26 -05:00
|
|
|
export type MVideoCaption = Omit<VideoCaptionModel, 'Video'>
|
|
|
|
|
2019-08-20 06:52:49 -05:00
|
|
|
// ############################################################################
|
|
|
|
|
2019-08-15 04:53:26 -05:00
|
|
|
export type MVideoCaptionLanguage = Pick<MVideoCaption, 'language'>
|
|
|
|
|
|
|
|
export type MVideoCaptionVideo = MVideoCaption &
|
2019-08-20 12:05:31 -05:00
|
|
|
Use<'Video', Pick<MVideo, 'id' | 'remote' | 'uuid'>>
|
|
|
|
|
|
|
|
// ############################################################################
|
|
|
|
|
|
|
|
// Format for API or AP object
|
|
|
|
|
|
|
|
export type MVideoCaptionFormattable = FunctionProperties<MVideoCaption> &
|
|
|
|
Pick<MVideoCaption, 'language'> &
|
|
|
|
Use<'Video', MVideoUUID>
|