]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/actors/actor.model.ts
bf86a917f5e33d6f7a00f615f2c216a056565d65
[github/Chocobozzz/PeerTube.git] / shared / models / actors / actor.model.ts
1 import { ActorImage } from './actor-image.model'
2
3 export interface Actor {
4 id: number
5 url: string
6 name: string
7 host: string
8 followingCount: number
9 followersCount: number
10 createdAt: Date | string
11
12 avatars: ActorImage[]
13
14 // TODO: remove, deprecated in 4.2
15 avatar: ActorImage
16 }