import { Injectable } from '@angular/core' import { HotkeyDescription, HotkeyProvider } from 'terminus-core' /** @hidden */ @Injectable() export class SSHHotkeyProvider extends HotkeyProvider { hotkeys: HotkeyDescription[] = [ { id: 'ssh', name: 'Show SSH connections', }, ] async provide (): Promise { return this.hotkeys } }