Add ability to disable webtorrent
[oweals/peertube.git] / server / typings / models / account / actor-follow.ts
index 1c66eb0a00336f895712f706550023981841286c..f44157eba1a00548ea23fda1e8ec5b7d6ed9d84b 100644 (file)
@@ -1,17 +1,16 @@
 import { ActorFollowModel } from '../../../models/activitypub/actor-follow'
 import {
   MActor,
-  MActorAccount,
-  MActorDefaultAccountChannel,
   MActorChannelAccountActor,
   MActorDefault,
+  MActorDefaultAccountChannel,
   MActorFormattable,
   MActorHost,
   MActorUsername
 } from './actor'
 import { PickWith } from '../../utils'
 import { ActorModel } from '@server/models/activitypub/actor'
-import { MChannelDefault } from '@server/typings/models'
+import { MChannelDefault } from '../video/video-channels'
 
 type Use<K extends keyof ActorFollowModel, M> = PickWith<ActorFollowModel, K, M>