Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7e8c56c

Browse files
committed
Fix stray edit
1 parent c923baf commit 7e8c56c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22407,7 +22407,7 @@ namespace ts {
2240722407
inferFromTypes((source as IndexedAccessType).objectType, (target as IndexedAccessType).objectType);
2240822408
inferFromTypes((source as IndexedAccessType).indexType, (target as IndexedAccessType).indexType);
2240922409
}
22410-
else if (source. flags & TypeFlags.StringMapping && target.flags & TypeFlags.StringMapping) {
22410+
else if (source.flags & TypeFlags.StringMapping && target.flags & TypeFlags.StringMapping) {
2241122411
if ((source as StringMappingType).symbol === (target as StringMappingType).symbol) {
2241222412
inferFromTypes((source as StringMappingType).type, (target as StringMappingType).type);
2241322413
}

0 commit comments

Comments
 (0)