Feature/ext connection dialog (#2201)

* Connection Dialog API for extensions
This commit is contained in:
Leila Lali
2018-08-10 09:29:46 -07:00
committed by GitHub
parent 2a3195636e
commit e5096e61e5
20 changed files with 217 additions and 58 deletions

View File

@@ -63,11 +63,11 @@ export class TestConnectionManagementService implements IConnectionManagementSer
return undefined;
}
getConnectionGroups(): ConnectionProfileGroup[] {
getConnectionGroups(providers?: string[]): ConnectionProfileGroup[] {
return [];
}
getActiveConnections(): ConnectionProfile[] {
getActiveConnections(providers?: string[]): ConnectionProfile[] {
return [];
}
@@ -75,7 +75,7 @@ export class TestConnectionManagementService implements IConnectionManagementSer
return undefined;
}
getRecentConnections(): ConnectionProfile[] {
getRecentConnections(providers?: string[]): ConnectionProfile[] {
return [];
}