mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01: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;
|
|
} |