import type { IAddRecommendationViewEvent } from './types'; import { Event } from './Event'; export class AddRecommendationViewEvent extends Event { constructor({ event_properties }: IAddRecommendationViewEvent) { super({ event_type: 'recommendation_view', event_properties, }); } }