Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
1234567891011121314 |
- import { OPEN_KEYBOARD_SHORTCUTS_DIALOG } from './actionTypes';
-
- /**
- * Opens the dialog showing available keyboard shortcuts.
- *
- * @returns {{
- * type: OPEN_KEYBOARD_SHORTCUTS_DIALOG
- * }}
- */
- export function openKeyboardShortcutsDialog() {
- return {
- type: OPEN_KEYBOARD_SHORTCUTS_DIALOG
- };
- }
|