1
0
Fork 0
peertube/shared/models/actors/actor.model.ts
2023-07-28 11:41:14 +02:00

13 lines
236 B
TypeScript

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[]
}