import { IProjectFollower } from './project-follower.model'; import { IProjectStar } from './project-star.model'; import { IProject } from './project.model'; export interface IUser { id?: string; isAdmin: boolean; apiKey: string; updatedAt?: Date; createdAt?: Date; projects?: IProject[]; projectStars?: IProjectStar[]; projectFollowers?: IProjectFollower[]; }