@halcyontech/vscode-ibmi-types 2.6.3 → 2.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/Tools.d.ts +2 -1
- package/package.json +1 -1
package/api/Tools.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import vscode from "vscode";
|
2
|
-
import { IBMiMessages } from '../typings';
|
2
|
+
import { IBMiMessages, QsysPath } from '../typings';
|
3
3
|
import { API } from "./import/git";
|
4
4
|
export declare namespace Tools {
|
5
5
|
class SqlError extends Error {
|
@@ -43,4 +43,5 @@ export declare namespace Tools {
|
|
43
43
|
function capitalize(text: string): string;
|
44
44
|
function sanitizeLibraryNames(libraries: string[]): string[];
|
45
45
|
function parseMessages(output: string): IBMiMessages;
|
46
|
+
function parseQSysPath(path: string): QsysPath;
|
46
47
|
}
|