Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow transitions to be defined using an array of states #4

Open
gbrunow opened this issue Sep 18, 2019 · 0 comments
Open

Allow transitions to be defined using an array of states #4

gbrunow opened this issue Sep 18, 2019 · 0 comments
Labels
enhancement New feature or request

Comments

@gbrunow
Copy link
Owner

gbrunow commented Sep 18, 2019

How it is:

stateMachine
   .transit({from: state1, to: state2, on: 'event_1')
   .transit({from: state3, to: state2, on: 'event_1');

Desired:

stateMachine
   .transit({from: [state1, state3], to: state2, on: 'event_1');
@gbrunow gbrunow added the enhancement New feature or request label Sep 18, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant