Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

actions.web.ts 349B

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