Files
stale/src/interfaces/comment.ts
T

6 lines
76 B
TypeScript
Raw Normal View History

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