Files
stale/src/interfaces/comment.ts
2021-06-24 16:50:23 -04:00

7 lines
92 B
TypeScript

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