1 import { 2 TOGGLE_REACTIONS_VISIBLE 3 } from './actionTypes'; 4 import { IReactionsAction } from './reducer'; 5 6 export * from './actions.any'; 7 8 /** 9 * Toggles the visibility of the reactions menu. 10 * 11 * @returns {void} 12 */ 13 export function toggleReactionsMenuVisibility(): IReactionsAction { 14 return { 15 type: TOGGLE_REACTIONS_VISIBLE 16 }; 17 }