import type { IAddPageViewEvent } from './types'; import { Event } from './Event'; export class AddPageViewEvent extends Event { constructor({ pageType, event_properties }: IAddPageViewEvent) { super({ event_type: 'page_view', event_value: pageType, event_properties, }); } }