mirror of https://github.com/Chocobozzz/PeerTube
11 lines
177 B
TypeScript
11 lines
177 B
TypeScript
|
import { UserRole } from './user-role.type'
|
||
|
|
||
|
export interface User {
|
||
|
id: number
|
||
|
username: string
|
||
|
email: string
|
||
|
displayNSFW: boolean
|
||
|
role: UserRole
|
||
|
createdAt: Date
|
||
|
}
|