| 19 | |
| 20 | // Shape of what we need from a live FSM instance |
| 21 | interface FsmLike { |
| 22 | id: string; |
| 23 | initialState: string; |
| 24 | states: Record<string, Record<string, unknown>>; |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * Normalize the input to a consistent internal shape. |
nothing calls this directly
no outgoing calls
no test coverage detected