import {IUser} from './user'; export interface IComment { user: IUser; body: string; }