]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/types/models/video/video-blacklist.ts
Move typescript utils in its own directory
[github/Chocobozzz/PeerTube.git] / server / types / models / video / video-blacklist.ts
index 2ac912405e169fd8d7d5d03180f0b6133cc1bbe0..048b63bd2052a58e1b82f49f885fc6468eb38696 100644 (file)
@@ -1,5 +1,5 @@
+import { PickWith } from '@shared/typescript-utils'
 import { VideoBlacklistModel } from '../../../models/video/video-blacklist'
-import { PickWith } from '@shared/core-utils'
 import { MVideo, MVideoFormattable } from './video'
 
 type Use<K extends keyof VideoBlacklistModel, M> = PickWith<VideoBlacklistModel, K, M>