mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 10:19:35 +02:00
6 lines
126 B
TypeScript
6 lines
126 B
TypeScript
import { Actor } from './actor.model'
|
|
|
|
export interface Account extends Actor {
|
|
displayName: string
|
|
description: string
|
|
}
|