mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-17 09:59:58 +00:00
20 lines
355 B
TypeScript
20 lines
355 B
TypeScript
import { ConfigProvider } from 'terminus-core'
|
|
|
|
/** @hidden */
|
|
export class SSHConfigProvider extends ConfigProvider {
|
|
defaults = {
|
|
ssh: {
|
|
connections: [],
|
|
options: {
|
|
}
|
|
},
|
|
hotkeys: {
|
|
'ssh': [
|
|
'Alt-S',
|
|
],
|
|
},
|
|
}
|
|
|
|
platformDefaults = { }
|
|
}
|