mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-28 02:22:26 +08:00
12 lines
310 B
TypeScript
12 lines
310 B
TypeScript
![]() |
export interface KeyboardShortcut {
|
||
|
separator?: string;
|
||
|
actionName?: string;
|
||
|
description?: string;
|
||
|
defaultShortcuts?: string[];
|
||
|
effectiveShortcuts?: string[];
|
||
|
scope?: string;
|
||
|
}
|
||
|
|
||
|
export interface KeyboardShortcutWithRequiredActionName extends KeyboardShortcut {
|
||
|
actionName: string;
|
||
|
}
|