import { Comment, CommentLikeTemplateSettings, ResolvedUserIdentity } from "../../../models"; export interface ICommentTemplate { comment: Comment; currentUser: ResolvedUserIdentity; openReply: (commentToReplyOn: Comment) => void; refresh: (addedComment: boolean) => void; dynamicInput: T; templateSettings: CommentLikeTemplateSettings; additionalRoles?: Array; hideEdit?: boolean; readOnly?: boolean; }