]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/actors/account.model.ts
Fix live update error
[github/Chocobozzz/PeerTube.git] / shared / models / actors / account.model.ts
CommitLineData
f4796856 1import { ActorImage } from './actor-image.model'
60650c77 2import { Actor } from './actor.model'
2295ce6c 3
60650c77 4export interface Account extends Actor {
c5911fd3 5 displayName: string
2422c46b 6 description: string
79bd2632 7
e024fd6a
C
8 updatedAt: Date | string
9
79bd2632 10 userId?: number
7a7724e6 11}
418d092a
C
12
13export interface AccountSummary {
14 id: number
418d092a
C
15 name: string
16 displayName: string
17 url: string
18 host: string
f4796856 19 avatar?: ActorImage
418d092a 20}