Skip to content

Commit f51173e

Browse files
ahejlsbergJack-Works
authored andcommitted
Fix lint error
1 parent 5cc6531 commit f51173e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/compiler/checker.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13437,9 +13437,9 @@ namespace ts {
1343713437
mapType(types[unionIndex], t => getTemplateType(texts, casings, replaceElement(types, unionIndex, t))) :
1343813438
errorType;
1343913439
}
13440-
let newTypes = [];
13441-
let newCasings = [];
13442-
let newTexts = [];
13440+
const newTypes = [];
13441+
const newCasings = [];
13442+
const newTexts = [];
1344313443
let text = texts[0];
1344413444
for (let i = 0; i < types.length; i++) {
1344513445
const t = types[i];

0 commit comments

Comments
 (0)