]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/types/models/video/video-import.ts
Move typescript utils in its own directory
[github/Chocobozzz/PeerTube.git] / server / types / models / video / video-import.ts
index 759b13c6ef2d28dbbc4a2923806e804affb640fb..650c293f79c8bdee93fb8fdcfef2c47c3b596068 100644 (file)
@@ -1,7 +1,7 @@
 import { VideoImportModel } from '@server/models/video/video-import'
-import { PickWith, PickWithOpt } from '@shared/core-utils'
-import { MVideo, MVideoAccountLight, MVideoFormattable, MVideoTag, MVideoThumbnail, MVideoWithFile } from './video'
+import { PickWith, PickWithOpt } from '@shared/typescript-utils'
 import { MUser } from '../user/user'
+import { MVideo, MVideoAccountLight, MVideoFormattable, MVideoTag, MVideoThumbnail, MVideoWithFile } from './video'
 
 type Use<K extends keyof VideoImportModel, M> = PickWith<VideoImportModel, K, M>