* Visits an export assignment, eliding it if it does not contain a clause that resolves * to a value. * * @param node The export assignment node.
(node)
| 93871 | * @param node The export assignment node. |
| 93872 | */ |
| 93873 | function visitExportAssignment(node) { |
| 93874 | // Elide the export assignment if it does not reference a value. |
| 93875 | return resolver.isValueAliasDeclaration(node) |
| 93876 | ? ts.visitEachChild(node, visitor, context) |
| 93877 | : undefined; |
| 93878 | } |
| 93879 | /** |
| 93880 | * Visits an export declaration, eliding it if it does not contain a clause that resolves to a value. |
| 93881 | * |
no test coverage detected
searching dependent graphs…