| 95 | // --- Interfaces --------------------------------- |
| 96 | |
| 97 | interface TrackedNode { |
| 98 | /** |
| 99 | * The node we are tracking. |
| 100 | */ |
| 101 | node: IStateTreeNode |
| 102 | |
| 103 | /** |
| 104 | * The mst model type |
| 105 | */ |
| 106 | modelType: IType<any, any, any> |
| 107 | } |
| 108 | |
| 109 | interface NodeTracker { |
| 110 | [name: string]: TrackedNode |
nothing calls this directly
no outgoing calls
no test coverage detected