1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import { VideoChannel } from '../videos/video-channel.model' import { UserRole } from './user-role' export interface User { id: number username: string email: string displayNSFW: boolean role: UserRole videoQuota: number createdAt: Date, author: { id: number uuid: string } videoChannels?: VideoChannel[] }