tabby/terminus-ssh/src/config.ts

20 lines
355 B
TypeScript
Raw Normal View History

import { ConfigProvider } from 'terminus-core'
2019-03-07 01:05:26 +00:00
/** @hidden */
export class SSHConfigProvider extends ConfigProvider {
defaults = {
ssh: {
connections: [],
options: {
}
},
hotkeys: {
'ssh': [
'Alt-S',
],
},
}
platformDefaults = { }
}