(type)
| 60061 | !!(type.flags & 2097152 /* TypeFlags.Intersection */) && !isGenericType(type) && ts.some(type.types, isValidIndexKeyType); |
| 60062 | } |
| 60063 | function getConstraintDeclaration(type) { |
| 60064 | return ts.mapDefined(ts.filter(type.symbol && type.symbol.declarations, ts.isTypeParameterDeclaration), ts.getEffectiveConstraintOfTypeParameter)[0]; |
| 60065 | } |
| 60066 | function getInferredTypeParameterConstraint(typeParameter, omitTypeReferences) { |
| 60067 | var _a; |
| 60068 | var inferences; |
no test coverage detected
searching dependent graphs…