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

19 lines
315 B
TypeScript
Raw Normal View History

import { Actor } from './actor.model'
2019-02-26 09:55:40 +00:00
import { Avatar } from '../avatars'
2017-12-04 09:34:40 +00:00
export interface Account extends Actor {
2017-12-29 18:10:13 +00:00
displayName: string
description: string
userId?: number
2017-11-13 16:39:41 +00:00
}
2019-02-26 09:55:40 +00:00
export interface AccountSummary {
id: number
name: string
displayName: string
url: string
host: string
avatar?: Avatar
}