1
0
Fork 0
peertube/shared/models/actors/actor.model.ts

13 lines
233 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
avatar?: ActorImage
}