X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftypes%2Fmodels%2Fvideo%2Fvideo-caption.ts;h=1f761a86615b55a1f7b218caf54ce18195160290;hb=cf21b2cbef61929177b9c09b5e017c3b7eb8535d;hp=9bb067001ecc9704d399c42e79e50c4b0e66f26f;hpb=26d6bf6533023326fa017812cf31bbe20c752d36;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/types/models/video/video-caption.ts b/server/types/models/video/video-caption.ts index 9bb067001..1f761a866 100644 --- a/server/types/models/video/video-caption.ts +++ b/server/types/models/video/video-caption.ts @@ -1,5 +1,5 @@ +import { PickWith } from '@shared/core-utils' import { VideoCaptionModel } from '../../../models/video/video-caption' -import { FunctionProperties, PickWith } from '@server/types/utils' import { MVideo, MVideoUUID } from './video' type Use = PickWith @@ -22,6 +22,6 @@ export type MVideoCaptionVideo = // Format for API or AP object export type MVideoCaptionFormattable = - FunctionProperties & + MVideoCaption & Pick & Use<'Video', MVideoUUID>