You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: types/index.d.ts
+14-14Lines changed: 14 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
*/
4
4
exporttypeCommandHelpOptions={
5
5
[key: string]: string;
6
-
}
6
+
};
7
7
8
8
/**
9
9
* Object storing the output file, and whether the compilation had warnings and the lines where they occurred.
@@ -12,7 +12,7 @@ export type CompilerData = {
12
12
line: string;
13
13
outFile: string|null;
14
14
hasWarning: boolean;
15
-
}
15
+
};
16
16
17
17
/**
18
18
* Compiler options for all exposed NSIS methods.
@@ -42,7 +42,7 @@ export type CompilerOptions = {
42
42
// library
43
43
pathToMakensis?: string;
44
44
pathToWine?: string;
45
-
}
45
+
};
46
46
47
47
/**
48
48
* Standard output of all MakenNSIS commands. Contains the name of the output file, status code, standard output, standard error, and number of warnings.
@@ -53,47 +53,47 @@ export type CompilerOutput = {
0 commit comments