import { Injectable } from '@angular/core' import { HotkeyDescription, HotkeyProvider } from 'tabby-core' /** @hidden */ @Injectable() export class ElectronHotkeyProvider extends HotkeyProvider { hotkeys: HotkeyDescription[] = [ { id: 'new-window', name: 'New window', }, { id: 'toggle-window', name: 'Toggle terminal window', }, ] async provide (): Promise { return this.hotkeys } }