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

19 lines
332 B
TypeScript
Raw Normal View History

2021-04-06 05:35:56 -04:00
import { ActorImage } from './actor-image.model'
import { Actor } from './actor.model'
2017-12-04 04:34:40 -05:00
export interface Account extends Actor {
2017-12-29 13:10:13 -05:00
displayName: string
description: string
userId?: number
2017-11-13 11:39:41 -05:00
}
2019-02-26 04:55:40 -05:00
export interface AccountSummary {
id: number
name: string
displayName: string
url: string
host: string
2021-04-06 05:35:56 -04:00
avatar?: ActorImage
2019-02-26 04:55:40 -05:00
}