Skip to content

Commit 48f2dd9

Browse files
committed
Fix linting issue
1 parent 86704e5 commit 48f2dd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12869,7 +12869,7 @@ namespace ts {
1286912869
return propType;
1287012870
}
1287112871
if (everyType(type, isTupleType)) {
12872-
let restType = mapType(type, t => getRestTypeOfTupleType(<TupleTypeReference>t) || undefinedType);
12872+
const restType = mapType(type, t => getRestTypeOfTupleType(<TupleTypeReference>t) || undefinedType);
1287312873
if (restType !== undefinedType) {
1287412874
return restType;
1287512875
}

0 commit comments

Comments
 (0)