| 63 | } |
| 64 | |
| 65 | export class TreeNode implements ITreeNodeData { |
| 66 | constructor(public id, public parentId, public data) {} |
| 67 | } |
| 68 | |
| 69 | export class TreeFactory { |
| 70 | nodes: Dictionary<TreeNode>; |
nothing calls this directly
no outgoing calls
no test coverage detected