(type)
| 58629 | return symbol.type; |
| 58630 | } |
| 58631 | function getTypeParameterFromMappedType(type) { |
| 58632 | return type.typeParameter || |
| 58633 | (type.typeParameter = getDeclaredTypeOfTypeParameter(getSymbolOfNode(type.declaration.typeParameter))); |
| 58634 | } |
| 58635 | function getConstraintTypeFromMappedType(type) { |
| 58636 | return type.constraintType || |
| 58637 | (type.constraintType = getConstraintOfTypeParameter(getTypeParameterFromMappedType(type)) || errorType); |
no test coverage detected
searching dependent graphs…