Type Alias: HistoryRedo()
HistoryRedo = () =>
Promise
<void
>
Function
Repeats a previously undone action in the configuration history.
This method moves forward in the history stack, re-applying an action that was previously undone. This is equivalent to the "Redo" function in most applications.
Returns
Promise
<void
>
Example
// Add a redo button to your UI
document.getElementById('redo-button').addEventListener('click', () => {
window.mimeeqApp.actions.redo();
});
Emits
mimeeq-history-go-forward When moving forward in the history stack
Emits
mimeeq-app-url-change When the configuration URL needs updating
Emits
mmq-app-url-change-sandbox For sandbox environment URL changes