Skip to content

Commit 854731a

Browse files
committed
Fix linting error
1 parent 2f73e39 commit 854731a

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
@@ -8818,7 +8818,7 @@ namespace ts {
88188818
const saveExpandingFlags = expandingFlags;
88198819
if (!(expandingFlags & 1) && isDeeplyNestedType(source, sourceStack, depth)) expandingFlags |= 1;
88208820
if (!(expandingFlags & 2) && isDeeplyNestedType(target, targetStack, depth)) expandingFlags |= 2;
8821-
let result = expandingFlags !== 3 ? structuredTypeRelatedTo(source, target, reportErrors) : Ternary.Maybe;
8821+
const result = expandingFlags !== 3 ? structuredTypeRelatedTo(source, target, reportErrors) : Ternary.Maybe;
88228822
expandingFlags = saveExpandingFlags;
88238823
depth--;
88248824
if (result) {

0 commit comments

Comments
 (0)