Skip to content

Commit f10fe38

Browse files
committed
Fix [][] lint
1 parent cf3eadc commit f10fe38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22018,7 +22018,7 @@ namespace ts {
2201822018
}
2201922019
}
2202022020
else {
22021-
const allDiagnostics: Array<ReadonlyArray<DiagnosticRelatedInformation>> = [];
22021+
const allDiagnostics: (readonly DiagnosticRelatedInformation[])[] = [];
2202222022
let max = 0;
2202322023
let min = Number.MAX_VALUE;
2202422024
let minIndex = 0;

0 commit comments

Comments
 (0)