Skip to content

Commit bbd84c6

Browse files
Fix code scanning alert no. 269: Disallow the any type
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
1 parent 7204954 commit bbd84c6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/manage/Compiler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export class WatCompiler extends Compiler {
9898
let out: string = '';
9999
let err: string = '';
100100

101-
function handle(error: ExecException | null, stdout: string, stderr: any) {
101+
function handle(error: ExecException | null, stdout: string, stderr: string) {
102102
out = stdout;
103103
err = error?.message ?? '';
104104
}

0 commit comments

Comments
 (0)