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.ts 525B

123456789101112131415161718192021222324
  1. export * from './actions.any';
  2. /**
  3. * Shows the toolbox for specified timeout.
  4. *
  5. * @param {number} _timeout - Timeout for showing the toolbox.
  6. * @returns {Function}
  7. */
  8. export function showToolbox(_timeout?: number): any {
  9. return {};
  10. }
  11. /**
  12. * Shows/hides the overflow menu.
  13. *
  14. * @param {boolean} _visible - True to show it or false to hide it.
  15. * @returns {{
  16. * type: SET_OVERFLOW_MENU_VISIBLE,
  17. * visible: boolean
  18. * }}
  19. */
  20. export function setOverflowMenuVisible(_visible: boolean): any {
  21. return {};
  22. }