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

8 lines
123 B
TypeScript
Raw Normal View History

interface IComment {
id: number;
body: string;
userFullName: string;
updatedAt: string;
}
export default IComment;