mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 23:31:42 +03:00
b83c5a15eb
- Close https://github.com/enso-org/cloud-v2/issues/1604 - Add ability to track backend calls - Remove inconsistent integration test code - Add skeleton classes for settings pages # Important Notes None
14 lines
626 B
TypeScript
14 lines
626 B
TypeScript
/** @file Actions for the "keyboard shortcuts" tab of the "settings" page. */
|
|
import BaseSettingsTabActions from './BaseSettingsTabActions'
|
|
import { goToSettingsTabActions, type GoToSettingsTabActions } from './gotoSettingsTabActions'
|
|
|
|
/** Actions for the "keyboard shortcuts" tab of the "settings" page. */
|
|
export default class SettingsKeyboardShortcutsTabActions<
|
|
Context,
|
|
> extends BaseSettingsTabActions<Context> {
|
|
/** Actions for navigating to another settings tab. */
|
|
get goToSettingsTab(): Omit<GoToSettingsTabActions<Context>, 'keyboardShortcuts'> {
|
|
return goToSettingsTabActions(this.step.bind(this))
|
|
}
|
|
}
|