Skip to content

Commit

Permalink
Fix [][] lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sandersn committed Sep 4, 2019
1 parent cf3eadc commit f10fe38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler/checker.ts
Expand Up @@ -22018,7 +22018,7 @@ namespace ts {
}
}
else {
const allDiagnostics: Array<ReadonlyArray<DiagnosticRelatedInformation>> = [];
const allDiagnostics: (readonly DiagnosticRelatedInformation[])[] = [];
let max = 0;
let min = Number.MAX_VALUE;
let minIndex = 0;
Expand Down

0 comments on commit f10fe38

Please sign in to comment.