(symbol *Symbol)
| 3558 | } |
| 3559 | |
| 3560 | func GetNonAugmentationDeclaration(symbol *Symbol) *Node { |
| 3561 | return core.Find(symbol.Declarations, func(d *Node) bool { |
| 3562 | return !IsExternalModuleAugmentation(d) && !IsGlobalScopeAugmentation(d) |
| 3563 | }) |
| 3564 | } |
| 3565 | |
| 3566 | func IsTypeDeclaration(node *Node) bool { |
| 3567 | switch node.Kind { |
no test coverage detected