PeerTube/shared/models/actors/actor.model.ts

14 lines
260 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
updatedAt: Date | string
avatar?: ActorImage
}