You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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