Apply strictNullChecks to src/settings/* (#10252
* Apply strictNullChecks to src/settings/* * Fix inherited types
This commit is contained in:
committed by
GitHub
parent
95223c87fe
commit
eca28ac2f3
@@ -154,7 +154,7 @@ export enum KeyBindingAction {
|
||||
ToggleHiddenEventVisibility = "KeyBinding.toggleHiddenEventVisibility",
|
||||
}
|
||||
|
||||
type KeyboardShortcutSetting = IBaseSetting<KeyCombo>;
|
||||
type KeyboardShortcutSetting = Omit<IBaseSetting<KeyCombo>, "supportedLevels">;
|
||||
|
||||
// TODO: We should figure out what to do with the keyboard shortcuts that are not handled by KeybindingManager
|
||||
export type IKeyboardShortcuts = Partial<Record<KeyBindingAction, KeyboardShortcutSetting>>;
|
||||
|
||||
Reference in New Issue
Block a user