Skip to content

Commit 441f8a4

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/sourcemap/SourceMapper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class WatMapper implements SourceMapper {
3434
let imports: Closure[];
3535
let sourceMap: Mapping;
3636

37-
function handleObjDumpStreams(error: ExecException | null, stdout: string, stderr: any) {
37+
function handleObjDumpStreams(error: ExecException | null, stdout: string, stderr: string) {
3838
if (stderr.match('wasm-objdump')) {
3939
reject('Could not find wasm-objdump in the path');
4040
} else if (error) {

0 commit comments

Comments
 (0)