Fix for resolvedTrueType and resolvedFalseType of conditionType not resolved (#45838)

* Fix for Issue #45537

* tests/baselines/reference/* files updated
This commit is contained in:
Justin Brown
2021-09-16 10:26:43 -06:00
committed by GitHub
parent a4364dcc62
commit f7a80029a3
3 changed files with 6 additions and 6 deletions

View File

@@ -5616,8 +5616,8 @@ namespace ts {
root: ConditionalRoot;
checkType: Type;
extendsType: Type;
resolvedTrueType: Type;
resolvedFalseType: Type;
resolvedTrueType?: Type;
resolvedFalseType?: Type;
/* @internal */
resolvedInferredTrueType?: Type; // The `trueType` instantiated with the `combinedMapper`, if present
/* @internal */