Add ability to disable webtorrent
[oweals/peertube.git] / server / typings / models / video / video-playlist-element.ts
index 7b1b993ce0017020af6406276a8927f8bbceea10..1aeff78d88c01c70739a3d1e58d895968c3e25c6 100644 (file)
@@ -1,6 +1,7 @@
 import { VideoPlaylistElementModel } from '@server/models/video/video-playlist-element'
 import { PickWith } from '@server/typings/utils'
-import { MVideoFormattable, MVideoPlaylistPrivacy, MVideoThumbnail, MVideoUrl } from '@server/typings/models'
+import { MVideoFormattable, MVideoThumbnail, MVideoUrl } from './video'
+import { MVideoPlaylistPrivacy } from './video-playlist'
 
 type Use<K extends keyof VideoPlaylistElementModel, M> = PickWith<VideoPlaylistElementModel, K, M>