e: REVERSE_SEARCH_INPUT_CHANGE, value, }; } function showReverseSearchNext({ access } = {}) { return { type: REVERSE_SEARCH_NEXT, access, }; } function showReverseSearchBack({ access } = {}) { return { type: REVERSE_SEARCH_BACK, access, }; } module.exports = { appendToHistory, clearHistory, historyLoaded, updateHistoryPosition, reverseSearchInputChange, showReverseSearchNext, showReverseSearchBack, }; PK