Skip to content

Commit f487c9b

Browse files
committed
Fix build errors.
1 parent c48a4fb commit f487c9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Extension/src/Utility/Remoting/snare.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ export function filteredClone(data: any, references = new Map<any, any>(), optio
485485
}
486486

487487
if (data[Symbol.iterator]) {
488-
const result = [];
488+
const result: any[] = [];
489489
references.set(data, result);
490490
for (const item of data) {
491491
result.push(filteredClone(item, references, options));

0 commit comments

Comments
 (0)