Suppose I have machine with states A, ..., Z.
I want the machine to go to state Z
if the machine receives the event { type: "END_OF_THE_WORLD" }
, regardless in which state it is.
Is it possible to define a transition that applies to all states, or do I have to define it in all the states, one by one?
I tried to find a way, but I think it is not possible with the current implementation of Xstate. Just asking, if I did not overlook something.