* Gets a value indicating whether the node is exported from an external module. * * @param node The node to test.
(node)
| 93995 | * @param node The node to test. |
| 93996 | */ |
| 93997 | function isExternalModuleExport(node) { |
| 93998 | return currentNamespace === undefined && ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */); |
| 93999 | } |
| 94000 | /** |
| 94001 | * Gets a value indicating whether the node is a named export from an external module. |
| 94002 | * |
no outgoing calls
no test coverage detected
searching dependent graphs…