From f10fe3891ffa6e9ec133f1e215b82b351b19f56b Mon Sep 17 00:00:00 2001 From: Nathan Shively-Sanders <293473+sandersn@users.noreply.github.com> Date: Wed, 4 Sep 2019 13:14:00 -0700 Subject: [PATCH] Fix [][] lint --- src/compiler/checker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/checker.ts b/src/compiler/checker.ts index 83f864f22a048..5d1739edb11bd 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -22018,7 +22018,7 @@ namespace ts { } } else { - const allDiagnostics: Array> = []; + const allDiagnostics: (readonly DiagnosticRelatedInformation[])[] = []; let max = 0; let min = Number.MAX_VALUE; let minIndex = 0;