* Gets a value indicating whether the node is exported from a namespace. * * @param node The node to test.
(node)
| 93987 | * @param node The node to test. |
| 93988 | */ |
| 93989 | function isExportOfNamespace(node) { |
| 93990 | return currentNamespace !== undefined && ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */); |
| 93991 | } |
| 93992 | /** |
| 93993 | * Gets a value indicating whether the node is exported from an external module. |
| 93994 | * |
no outgoing calls
no test coverage detected