457bb213b2
Inject them in an angular component so we can easily change their color
14 lines
271 B
TypeScript
14 lines
271 B
TypeScript
import { Avatar } from '../avatars/avatar.model'
|
|
|
|
export interface Actor {
|
|
id: number
|
|
uuid: string
|
|
url: string
|
|
name: string
|
|
host: string
|
|
followingCount: number
|
|
followersCount: number
|
|
createdAt: Date | string
|
|
updatedAt: Date | string
|
|
avatar?: Avatar
|
|
}
|