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

21 lines
360 B
TypeScript
Raw Normal View History

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