You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/compiler/types.ts
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4131,6 +4131,7 @@ namespace ts {
4131
4131
OptionalParameter=1<<14,// Optional parameter
4132
4132
RestParameter=1<<15,// Rest parameter
4133
4133
DeferredType=1<<16,// Calculation of the type of this symbol is deferred due to processing costs, should be fetched with `getTypeOfSymbolWithDeferredType`
4134
+
HasNeverType=1<<17,// Synthetic property with at least one never type in constituents
4134
4135
Synthetic=SyntheticProperty|SyntheticMethod,
4135
4136
Discriminant=HasNonUniformType|HasLiteralType,
4136
4137
Partial=ReadPartial|WritePartial
@@ -4459,6 +4460,10 @@ namespace ts {
4459
4460
IsGenericIndexTypeComputed=1<<24,// IsGenericIndexType flag has been computed
4460
4461
/* @internal */
4461
4462
IsGenericIndexType=1<<25,// Union or intersection contains generic index type
0 commit comments