Files
stale/src/interfaces/comment.ts
T

6 lines
76 B
TypeScript

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