Class implementing the logout screen functionality. This screen allows users to confirm or deny the logout action.
Creates an instance of the Logout screen manager.
Static
Confirms the logout action (accept or deny).
The options containing the action to perform.
import Logout from '@auth0/auth0-acul-js/logout';const logout = new Logout();await logout.confirmLogout({ action: 'accept' }); Copy
import Logout from '@auth0/auth0-acul-js/logout';const logout = new Logout();await logout.confirmLogout({ action: 'accept' });
Retrieves the array of transaction errors from the context, or an empty array if none exist.
An array of error objects from the transaction context.
Class implementing the logout screen functionality. This screen allows users to confirm or deny the logout action.