Indicates that a symbol directly or indirectly resolves to a type-only import or export.
(symbol)
| 50887 | } |
| 50888 | /** Indicates that a symbol directly or indirectly resolves to a type-only import or export. */ |
| 50889 | function getTypeOnlyAliasDeclaration(symbol) { |
| 50890 | if (!(symbol.flags & 2097152 /* SymbolFlags.Alias */)) { |
| 50891 | return undefined; |
| 50892 | } |
| 50893 | var links = getSymbolLinks(symbol); |
| 50894 | return links.typeOnlyDeclaration || undefined; |
| 50895 | } |
| 50896 | function markExportAsReferenced(node) { |
| 50897 | var symbol = getSymbolOfNode(node); |
| 50898 | var target = resolveAlias(symbol); |
no test coverage detected
searching dependent graphs…