Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c923baf commit 7e8c56cCopy full SHA for 7e8c56c
src/compiler/checker.ts
@@ -22407,7 +22407,7 @@ namespace ts {
22407
inferFromTypes((source as IndexedAccessType).objectType, (target as IndexedAccessType).objectType);
22408
inferFromTypes((source as IndexedAccessType).indexType, (target as IndexedAccessType).indexType);
22409
}
22410
- else if (source. flags & TypeFlags.StringMapping && target.flags & TypeFlags.StringMapping) {
+ else if (source.flags & TypeFlags.StringMapping && target.flags & TypeFlags.StringMapping) {
22411
if ((source as StringMappingType).symbol === (target as StringMappingType).symbol) {
22412
inferFromTypes((source as StringMappingType).type, (target as StringMappingType).type);
22413
0 commit comments