Skip to content

Commit

Permalink
Fixed wrong import
Browse files Browse the repository at this point in the history
Signed-off-by: Seb Julliand <[email protected]>
  • Loading branch information
sebjulliand committed Oct 3, 2024
1 parent a7d5f14 commit 226d0ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/IBMi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as node_ssh from "node-ssh";
import os from "os";
import path, { parse as parsePath } from 'path';
import * as vscode from "vscode";
import { IBMiComponent, IBMiComponentType } from "../components/componen
import { IBMiComponent, IBMiComponentType } from "../components/component";
import { CopyToImport } from "../components/copyToImport";
import { ComponentManager } from "../components/manager";
import { instance } from "../instantiate";
Expand Down Expand Up @@ -1353,7 +1353,7 @@ export default class IBMi {
}
}

getComponent<T extends IBMiComponent>(type: IBMiComponentType<T>, ignoreState?:boolean): T | undefined {
getComponent<T extends IBMiComponent>(type: IBMiComponentType<T>, ignoreState?: boolean): T | undefined {
return this.componentManager.get<T>(type, ignoreState);
}

Expand Down

0 comments on commit 226d0ce

Please sign in to comment.