(symbol)
| 62851 | return ts.isTypeAlias(host) ? getSymbolOfNode(host) : undefined; |
| 62852 | } |
| 62853 | function getTypeArgumentsForAliasSymbol(symbol) { |
| 62854 | return symbol ? getLocalTypeParametersOfClassOrInterfaceOrTypeAlias(symbol) : undefined; |
| 62855 | } |
| 62856 | function isNonGenericObjectType(type) { |
| 62857 | return !!(type.flags & 524288 /* TypeFlags.Object */) && !isGenericMappedType(type); |
| 62858 | } |
no test coverage detected
searching dependent graphs…