import { Tenant } from 'src/types/tenant'; import { Subjects } from './subjects'; import { LiKeUnlikeType } from 'src/types/likeUnlikeType'; export interface LikeUnlikeMadeEvent { subject: Subjects.LikeUnlikeMade; data: { tenant: Tenant; targetId: string; userId: string; type: LiKeUnlikeType; }; }