import { Event, EventType } from "../../../event/core/event"; /** * Session Ping Event * * This is automatically sent to the API whenever * an EventRunner is activated. It's used to renew * the sesion server side. * * @export * @class SessionPingEvent * @extends {Event} */ export class SessionPingEvent extends Event { public type: EventType = EventType.SessionPing; }