Skip to content

Commit 823d6f7

Browse files
committed
add type signature
1 parent bb7d90c commit 823d6f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/amazonq/test/e2e/amazonq/framework/jsdomInjector.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ export function injectJSDOM() {
3434
})
3535

3636
// jsdom doesn't have support for structuredClone. See https://github.com/jsdom/jsdom/issues/3363
37-
global.structuredClone = (val) => JSON.parse(JSON.stringify(val))
37+
global.structuredClone = (val: any) => JSON.parse(JSON.stringify(val))
3838
}

0 commit comments

Comments
 (0)