Files
astuto/app/javascript/interfaces/json/IComment.ts

8 lines
134 B
TypeScript
Raw Normal View History

interface ICommentJSON {
id: number;
body: string;
user_full_name: string;
updated_at: string;
}
export default ICommentJSON;