File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,8 @@ export async function activate(context: ExtensionContext): Promise<CodeForIBMi>
144144 deployTools : DeployTools ,
145145 evfeventParser : parseErrors ,
146146 tools : VscodeTools ,
147- componentRegistry : extensionComponentRegistry
147+ componentRegistry : extensionComponentRegistry ,
148+ connectionManager : IBMi . connectionManager
148149 } ;
149150}
150151
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import { Ignore } from "ignore";
22import { WorkspaceFolder } from "vscode" ;
33import Instance from "./Instance" ;
44import { ComponentRegistry } from './api/components/manager' ;
5+ import { ConnectionManager } from "./api/configuration/config/ConnectionManager" ;
56import { DeploymentMethod , FileError } from "./api/types" ;
67import { CustomEditor } from "./editors/customEditorProvider" ;
78import { DeployTools } from "./filesystems/local/deployTools" ;
@@ -15,7 +16,8 @@ export interface CodeForIBMi {
1516 deployTools : typeof DeployTools ,
1617 evfeventParser : ( lines : string [ ] ) => Map < string , FileError [ ] > ,
1718 tools : typeof VscodeTools ,
18- componentRegistry : ComponentRegistry
19+ componentRegistry : ComponentRegistry ,
20+ connectionManager : ConnectionManager
1921}
2022
2123export interface DeploymentParameters {
You can’t perform that action at this time.
0 commit comments