added SSH connection manager (fixes #220)

This commit is contained in:
Eugene Pankov
2017-11-27 16:30:59 +01:00
parent 13a76db9af
commit 5cdb7527c8
30 changed files with 3634 additions and 21 deletions

View File

@@ -1,10 +1,8 @@
export declare type ComponentType = new (...args: any[]) => any
export abstract class SettingsTabProvider {
id: string
title: string
getComponentType (): ComponentType {
getComponentType (): any {
return null
}
}