mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 11:47:46 +00:00
15 lines
314 B
JavaScript
15 lines
314 B
JavaScript
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
|
|
};
|
|
}
|