您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }