export interface CommentEntity { user: string; submitted: string; commentText: string; } export type Comment = CommentEntity;