Skip to content

Commit ed13f97

Browse files
committed
chore: fix biome issues
1 parent 85d9542 commit ed13f97

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

types/index.d.ts

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*/
44
export type CommandHelpOptions = {
55
[key: string]: string;
6-
}
6+
};
77

88
/**
99
* Object storing the output file, and whether the compilation had warnings and the lines where they occurred.
@@ -12,7 +12,7 @@ export type CompilerData = {
1212
line: string;
1313
outFile: string | null;
1414
hasWarning: boolean;
15-
}
15+
};
1616

1717
/**
1818
* Compiler options for all exposed NSIS methods.
@@ -42,7 +42,7 @@ export type CompilerOptions = {
4242
// library
4343
pathToMakensis?: string;
4444
pathToWine?: string;
45-
}
45+
};
4646

4747
/**
4848
* 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 = {
5353
stdout: string | HeaderInfo | HelpObject | OutputObject | null;
5454
stderr: string | null;
5555
warnings: number;
56-
}
56+
};
5757

5858
/**
5959
* Key value pair consisting of NSIS definitions as key and their value.
6060
*/
6161
export type DefineOptions = {
6262
[key: string]: string;
63-
}
63+
};
6464

6565
/**
6666
* Key value pair consisting of environment variables as key and their value.
6767
*/
6868
export type EnvironmentVariables = {
6969
[key: string]: string | undefined;
70-
}
70+
};
7171

7272
/**
7373
* Header information returned by the `-HDRINFO` command.
7474
*/
7575
export type HeaderInfo = {
7676
sizes: HeaderInfoSizes;
7777
defined_symbols: HeaderInfoSymbols;
78-
}
78+
};
7979

8080
/**
8181
* Key value pair consisting of header information sizes as key and their value.
8282
*/
8383
export type HeaderInfoSizes = {
8484
[key: string]: string;
85-
}
85+
};
8686

8787
export type HeaderInfoSymbols = {
8888
[key: string]: boolean | number | string;
89-
}
89+
};
9090

9191
/**
9292
* Key value pair consisting of NSIS command as key and its description as value.
9393
*/
9494
export type HelpObject = {
9595
[key: string]: string;
96-
}
96+
};
9797

9898
/**
9999
* An array containing the command, arguments, and options passed to MakeNSIS.
@@ -109,18 +109,18 @@ export type MapArgumentOptions = {
109109
onData?: (data: CompilerData) => void;
110110
onError?: (line: string) => void;
111111
onClose?: (data: CompilerOutput) => void;
112-
}
112+
};
113113

114114
export type StreamOptions = {
115115
stdout: string;
116116
stderr: string;
117-
}
117+
};
118118

119119
export type StreamOptionsFormatted = {
120120
stdout: string | HeaderInfo | HelpObject | OutputObject;
121121
stderr: string;
122-
}
122+
};
123123

124124
export type OutputObject = {
125125
[key: string]: boolean | number | string | undefined;
126-
}
126+
};

0 commit comments

Comments
 (0)