diff options
Diffstat (limited to 'shared/models/videos')
-rw-r--r-- | shared/models/videos/channel/video-channel.model.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/shared/models/videos/channel/video-channel.model.ts b/shared/models/videos/channel/video-channel.model.ts index 32829e92a..ae6dea42d 100644 --- a/shared/models/videos/channel/video-channel.model.ts +++ b/shared/models/videos/channel/video-channel.model.ts | |||
@@ -1,6 +1,5 @@ | |||
1 | import { Actor } from '../../actors/actor.model' | 1 | import { Actor } from '../../actors/actor.model' |
2 | import { Account } from '../../actors/index' | 2 | import { Account, ActorImage } from '../../actors' |
3 | import { Avatar } from '../../avatars' | ||
4 | 3 | ||
5 | export type ViewsPerDate = { | 4 | export type ViewsPerDate = { |
6 | date: Date | 5 | date: Date |
@@ -24,5 +23,5 @@ export interface VideoChannelSummary { | |||
24 | displayName: string | 23 | displayName: string |
25 | url: string | 24 | url: string |
26 | host: string | 25 | host: string |
27 | avatar?: Avatar | 26 | avatar?: ActorImage |
28 | } | 27 | } |