* Gets a value indicating whether the node is a named export from an external module. * * @param node The node to test.
(node)
| 94003 | * @param node The node to test. |
| 94004 | */ |
| 94005 | function isNamedExternalModuleExport(node) { |
| 94006 | return isExternalModuleExport(node) |
| 94007 | && !ts.hasSyntacticModifier(node, 512 /* ModifierFlags.Default */); |
| 94008 | } |
| 94009 | /** |
| 94010 | * Gets a value indicating whether the node is the default export of an external module. |
| 94011 | * |
no test coverage detected
searching dependent graphs…