Skip to content

Commit 9e6811f

Browse files
committed
[correlateResults.ts] any -> unknown
1 parent 0274a0b commit 9e6811f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eng/tools/lint-diff/src/correlateResults.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ export function isSameSources(a: Source[], b: Source[]) {
213213
return true;
214214
}
215215

216-
export function arrayIsEqual(a: any[], b: any[]) {
216+
export function arrayIsEqual(a: unknown[], b: unknown[]) {
217217
if (a.length !== b.length) {
218218
return false;
219219
}

0 commit comments

Comments
 (0)