server-ts: Port services/options_init

This commit is contained in:
Elian Doran
2024-02-18 13:32:00 +02:00
parent 45cb7ced2c
commit 5f4f30f84b
4 changed files with 32 additions and 22 deletions

View 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;
}