* Gets a value indicating whether the node is the default export of an external module. * * @param node The node to test.
(node)
| 94012 | * @param node The node to test. |
| 94013 | */ |
| 94014 | function isDefaultExternalModuleExport(node) { |
| 94015 | return isExternalModuleExport(node) |
| 94016 | && ts.hasSyntacticModifier(node, 512 /* ModifierFlags.Default */); |
| 94017 | } |
| 94018 | /** |
| 94019 | * Creates a statement for the provided expression. This is used in calls to `map`. |
| 94020 | */ |
no test coverage detected
searching dependent graphs…