mirror of
https://github.com/zadam/trilium.git
synced 2025-12-23 00:29:59 +01:00
server-ts: Port services/options_init
This commit is contained in:
12
src/services/keyboard_actions_interface.ts
Normal file
12
src/services/keyboard_actions_interface.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
export interface KeyboardShortcut {
|
||||
separator?: string;
|
||||
actionName?: string;
|
||||
description?: string;
|
||||
defaultShortcuts?: string[];
|
||||
effectiveShortcuts?: string[];
|
||||
scope?: string;
|
||||
}
|
||||
|
||||
export interface KeyboardShortcutWithRequiredActionName extends KeyboardShortcut {
|
||||
actionName: string;
|
||||
}
|
||||
Reference in New Issue
Block a user