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 04:55:40 -05:00
import { Avatar } from '../avatars'
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
avatar?: Avatar
}