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

28 lines
1019 B
TypeScript
Raw Normal View History

2019-08-15 11:53:26 +02:00
import { VideoCaptionModel } from '../../../models/video/video-caption'
2020-06-23 14:10:17 +02:00
import { FunctionProperties, PickWith } from '@shared/core-utils'
import { MVideo, MVideoUUID } from './video'
2019-08-15 11:53:26 +02:00
2019-08-20 13:52:49 +02:00
type Use<K extends keyof VideoCaptionModel, M> = PickWith<VideoCaptionModel, K, M>
// ############################################################################
2019-08-15 11:53:26 +02:00
export type MVideoCaption = Omit<VideoCaptionModel, 'Video'>
2019-08-20 13:52:49 +02:00
// ############################################################################
2019-08-15 11:53:26 +02:00
export type MVideoCaptionLanguage = Pick<MVideoCaption, 'language'>
export type MVideoCaptionLanguageUrl = Pick<MVideoCaption, 'language' | 'fileUrl' | 'getFileUrl'>
2019-08-15 11:53:26 +02:00
2020-01-31 16:56:52 +01:00
export type MVideoCaptionVideo =
MVideoCaption &
2019-08-20 19:05:31 +02:00
Use<'Video', Pick<MVideo, 'id' | 'remote' | 'uuid'>>
// ############################################################################
// Format for API or AP object
2020-01-31 16:56:52 +01:00
export type MVideoCaptionFormattable =
FunctionProperties<MVideoCaption> &
2019-08-20 19:05:31 +02:00
Pick<MVideoCaption, 'language'> &
Use<'Video', MVideoUUID>