]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/types/models/video/video-redundancy.ts
Move typescript utils in its own directory
[github/Chocobozzz/PeerTube.git] / server / types / models / video / video-redundancy.ts
index 411375c81e723f4d39a147bc6540d4bd792e2d27..e2a9beb93675622809e6a67b81adcdba2b1105f0 100644 (file)
@@ -1,10 +1,10 @@
-import { VideoRedundancyModel } from '../../../models/redundancy/video-redundancy'
-import { PickWith, PickWithOpt } from '@shared/core-utils'
-import { VideoStreamingPlaylistModel } from '@server/models/video/video-streaming-playlist'
 import { VideoFileModel } from '@server/models/video/video-file'
+import { VideoStreamingPlaylistModel } from '@server/models/video/video-streaming-playlist'
+import { PickWith, PickWithOpt } from '@shared/typescript-utils'
+import { VideoRedundancyModel } from '../../../models/redundancy/video-redundancy'
+import { MVideoUrl } from './video'
 import { MVideoFile, MVideoFileVideo } from './video-file'
 import { MStreamingPlaylistVideo } from './video-streaming-playlist'
-import { MVideoUrl } from './video'
 
 type Use<K extends keyof VideoRedundancyModel, M> = PickWith<VideoRedundancyModel, K, M>