import { Event, EventType } from "../../../event/core/event"; /** * Session Start Event * * This is automatically sent to the API whenever the * Bundle runs and a new `sessionId` is created. * * @export * @class SessionStartEvent * @extends {Event} */ export class SessionStartEvent extends Event { public type: EventType = EventType.SessionStart; }