blob: bf86a917f5e33d6f7a00f615f2c216a056565d65 (
plain) (
tree)
|
|
import { ActorImage } from './actor-image.model'
export interface Actor {
id: number
url: string
name: string
host: string
followingCount: number
followersCount: number
createdAt: Date | string
avatars: ActorImage[]
// TODO: remove, deprecated in 4.2
avatar: ActorImage
}
|