* Visits an import specifier, eliding it if its target, its references, and the compilation settings allow. * * @param node The import specifier node.
(node)
| 93862 | * @param node The import specifier node. |
| 93863 | */ |
| 93864 | function visitImportSpecifier(node) { |
| 93865 | return !node.isTypeOnly && shouldEmitAliasDeclaration(node) ? node : undefined; |
| 93866 | } |
| 93867 | /** |
| 93868 | * Visits an export assignment, eliding it if it does not contain a clause that resolves |
| 93869 | * to a value. |
nothing calls this directly
no test coverage detected