(node: TreeNode)
| 606 | type TargetTreeNode = TreeNode & { value: ITarget }; |
| 607 | |
| 608 | export const isTargetTreeNode = (node: TreeNode): node is TargetTreeNode => !!node.value; |
| 609 | |
| 610 | /** |
| 611 | * Node in the tree that manages the collective state of shutdowns, so that |
no outgoing calls
no test coverage detected