We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf7ea8a commit ed80c21Copy full SHA for ed80c21
1 file changed
src/compiler/types.ts
@@ -7103,7 +7103,7 @@ export const enum InferencePriority {
7103
ReturnType = 1 << 7, // Inference made from return type of generic function
7104
LiteralKeyof = 1 << 8, // Inference made from a string literal to a keyof T
7105
DistributiveConditional = 1 << 9,
7106
- NoConstraints = 1 << 10, // Don't infer from constraints of instantiable types
+ NoConstraints = 1 << 10, // Don't infer from constraints of instantiable types
7107
AlwaysStrict = 1 << 11, // Always use strict rules for contravariant inferences
7108
MaxValue = 1 << 12, // Seed for inference priority tracking
7109
0 commit comments