File tree 3 files changed +6
-6
lines changed
tests/baselines/reference/api
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -5616,8 +5616,8 @@ namespace ts {
5616
5616
root : ConditionalRoot ;
5617
5617
checkType : Type ;
5618
5618
extendsType : Type ;
5619
- resolvedTrueType : Type ;
5620
- resolvedFalseType : Type ;
5619
+ resolvedTrueType ? : Type ;
5620
+ resolvedFalseType ? : Type ;
5621
5621
/* @internal */
5622
5622
resolvedInferredTrueType ?: Type ; // The `trueType` instantiated with the `combinedMapper`, if present
5623
5623
/* @internal */
Original file line number Diff line number Diff line change @@ -2722,8 +2722,8 @@ declare namespace ts {
2722
2722
root: ConditionalRoot;
2723
2723
checkType: Type;
2724
2724
extendsType: Type;
2725
- resolvedTrueType: Type;
2726
- resolvedFalseType: Type;
2725
+ resolvedTrueType? : Type;
2726
+ resolvedFalseType? : Type;
2727
2727
}
2728
2728
export interface TemplateLiteralType extends InstantiableType {
2729
2729
texts: readonly string[];
Original file line number Diff line number Diff line change @@ -2722,8 +2722,8 @@ declare namespace ts {
2722
2722
root : ConditionalRoot ;
2723
2723
checkType : Type ;
2724
2724
extendsType : Type ;
2725
- resolvedTrueType : Type ;
2726
- resolvedFalseType : Type ;
2725
+ resolvedTrueType ? : Type ;
2726
+ resolvedFalseType ? : Type ;
2727
2727
}
2728
2728
export interface TemplateLiteralType extends InstantiableType {
2729
2729
texts : readonly string [ ] ;
You can’t perform that action at this time.
0 commit comments