import { Tenant } from 'src/types/tenant'; import { Subjects } from './subjects'; export interface CommentRepliedEvent { subject: Subjects.CommentReplied; data: { tenant: Tenant; postId: string; authorId: string; commentId: string; text: string; targetDescription?: string; authorNickName?: string; authorName?: string; }; }