Files
stale/src/interfaces/comment.ts
T

7 lines
92 B
TypeScript
Raw Normal View History

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