]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/actors/actor.model.ts
Implement avatar miniatures (#4639)
[github/Chocobozzz/PeerTube.git] / shared / models / actors / actor.model.ts
CommitLineData
f4796856 1import { ActorImage } from './actor-image.model'
60650c77
C
2
3export interface Actor {
4 id: number
60650c77
C
5 url: string
6 name: string
7 host: string
8 followingCount: number
9 followersCount: number
0f320037 10 createdAt: Date | string
d0800f76 11
12 avatars: ActorImage[]
13
14 // TODO: remove, deprecated in 4.2
15 avatar: ActorImage
60650c77 16}