Zamok Kiosk API
    Preparing search index...
    openCountdownDialog: PayloadAC<
        "OPEN_TIMER_COUNTDOWN_DIALOG",
        OpenCountdownPayload,
    > = ...

    Dispatch to open a countdown dialog for session timeout

    payload.timerCountdown is in seconds. payload.type is the type of countdown dialog to display (Session or Facelock). You likely don't need to dispatch this action yourself, as it is dispatched automatically when a session is about to time out.

    {
    type: 'OPEN_TIMER_COUNTDOWN_DIALOG',
    payload: {
    timerCountdown: number;
    type: CountdownDialogTypes;
    }
    }