| 1 | import { ComponentInstance } from "./componentInstance"; |
| 2 | |
| 3 | interface IState { |
| 4 | readonly id: number; |
| 5 | readonly data: {}; |
| 6 | parent: IState; |
| 7 | children: IState[]; |
| 8 | componentInstance: ComponentInstance; |
| 9 | lastOperation: LastOperation; |
| 10 | } |
| 11 | |
| 12 | export const enum LastOperation { |
| 13 | Processed = 0, |
nothing calls this directly
no outgoing calls
no test coverage detected