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
* An external module with an 'export =' declaration resolves to the target of the 'export =' declaration,
3351
3351
* and an external module with no 'export =' declaration resolves to the module itself.
@@ -4502,8 +4502,10 @@ namespace ts {
4502
4502
LiteralKeyof=1<<5,// Inference made from a string literal to a keyof T
4503
4503
NoConstraints=1<<6,// Don't infer from constraints of instantiable types
4504
4504
AlwaysStrict=1<<7,// Always use strict rules for contravariant inferences
4505
+
MaxValue=1<<8,// Seed for inference priority tracking
4505
4506
4506
4507
PriorityImpliesCombination=ReturnType|MappedTypeConstraint|LiteralKeyof,// These priorities imply that the resulting type should be a combination of all candidates
4508
+
Circularity=-1,// Inference circularity (value less than all other priorities)
0 commit comments