Zamok Kiosk API
    Preparing search index...
    sessionStart: () => { payload: number; type: "SESSION_START" } = ...

    Dispatch when a new kiosk user session has started.

    Type Declaration

      • (): { payload: number; type: "SESSION_START" }
      • Returns { payload: number; type: "SESSION_START" }

    Payload is a Unix timestamp of when the session started. This action emits automatically when a new kiosk user session starts. You likely don't need to dispatch this action yourself.

    {
    type: 'SESSION_START',
    payload: 1656427200000 // Date.now()
    }