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

actions.native.js 311B

123456789101112131415161718
  1. // @flow
  2. import { TOGGLE_TOOLBOX_VISIBLE } from './actionTypes';
  3. export * from './actions.any';
  4. /**
  5. * Action to toggle the toolbox visibility.
  6. *
  7. * @returns {{
  8. * type: TOGGLE_TOOLBOX_VISIBLE
  9. * }}
  10. */
  11. export function toggleToolboxVisible() {
  12. return {
  13. type: TOGGLE_TOOLBOX_VISIBLE
  14. };
  15. }