import { Injectable } from '@angular/core' import { HotkeyDescription, HotkeyProvider } from 'tabby-core' /** @hidden */ @Injectable() export class SerialHotkeyProvider extends HotkeyProvider { hotkeys: HotkeyDescription[] = [ { id: 'serial', name: 'Show Serial connections', }, { id: 'restart-serial-session', name: 'Restart current serial session', }, ] async provide (): Promise { return this.hotkeys } }