Triggered when event has started.
function onEventStarted(handler: function): void;
handler(event: EventStartedEnvelope): void | Promise<void>
import { wixEventsV2 } from "@wix/events";
wixEventsV2.onEventStarted((event) => {
// handle your event here
});