(node)
| 15021 | } |
| 15022 | ts.isGlobalScopeAugmentation = isGlobalScopeAugmentation; |
| 15023 | function isExternalModuleAugmentation(node) { |
| 15024 | return isAmbientModule(node) && isModuleAugmentationExternal(node); |
| 15025 | } |
| 15026 | ts.isExternalModuleAugmentation = isExternalModuleAugmentation; |
| 15027 | function isModuleAugmentationExternal(node) { |
| 15028 | // external module augmentation is a ambient module declaration that is either: |
no test coverage detected