IComment.ts 165 B

12345678910
  1. interface IComment {
  2. root: string;
  3. className: string;
  4. propertyName: string;
  5. author: string;
  6. timestamp: number;
  7. text: string;
  8. };
  9. export default IComment;