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.

1234567891011121314
  1. import { OPEN_KEYBOARD_SHORTCUTS_DIALOG } from './actionTypes';
  2. /**
  3. * Opens the dialog showing available keyboard shortcuts.
  4. *
  5. * @returns {{
  6. * type: OPEN_KEYBOARD_SHORTCUTS_DIALOG
  7. * }}
  8. */
  9. export function openKeyboardShortcutsDialog() {
  10. return {
  11. type: OPEN_KEYBOARD_SHORTCUTS_DIALOG
  12. };
  13. }