Skip to content

Commit 15c6022

Browse files
committed
Fix typo causing bug
1 parent cf20850 commit 15c6022

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
@@ -4929,7 +4929,7 @@ namespace ts {
49294929
}
49304930

49314931
function getApparentTypeOfIntersectionType(type: IntersectionType) {
4932-
return type.resolvedIndexType || (type.resolvedApparentType = getTypeWithThisArgument(type, type));
4932+
return type.resolvedApparentType || (type.resolvedApparentType = getTypeWithThisArgument(type, type));
49334933
}
49344934

49354935
/**

0 commit comments

Comments
 (0)