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

    Dispatch when a kiosk user session has ended.

    Type Declaration

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

    Payload is a Unix timestamp of when the session ended. May be called manually to end a session, but is also called automatically at times when a session should end (i.e. logout, session timeout, etc).

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