interface IComment { root: string; className: string; propertyName: string; author: string; timestamp: number; text: string; }; export default IComment;